How to debug as NT AUTHORITY \ SYSTEM in Visual Studio?

I am trying to debug as NT AUTHORITY \ SYSTEM. I tried using the methods described in the following question: RunAs Another user when debugging in Visual Studio

But what credentials do I need to use to authenticate?

+4
source share
1 answer

runascannot start as System / Local Service / Network Service, etc. But it psexec -scan start the process as a System.

-s Start the remote process in the system account.

+4
source

Source: https://habr.com/ru/post/1524584/


All Articles