Reputation: 6202
I my trying to attach to the SecurityHealthService.exe process from VS 2022
However it doesn't show up in the "Attach to Process" dialog
I'm having an issue enabling Memory Integrity in Core Isolation, and pressing Scan shows CPU activity for SecurityHealthService.exe in Task Manager, but not for SecurityHealthHost.exe
The incompatible drivers list is blank
All reported drivers in Autoruns are verified
Cannot find any log entries in Computer Management
Virtualization Enabled
SMM Security Mitigation On
Therefore, I want to attach to SecurityHealthService.exe and look for any strings.
Upvotes: 0
Views: 170
Reputation: 6050
You can use Process Explorer (procexp.exe) from Windows Internals site to examine strings.
If you can't attach to the process, it is probably because you are not running your instance of Visual Studio as an administrator. Run it as an adminstrator and you should be able to attach to the process.
I right click on the shortcut and select my Visual Studio version and it allows an option to run as administrator.
Of course, you must have administrator privileges to do so.
Upvotes: 0