Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I'm trying to debug as NT AUTHORITY\SYSTEM. I've tried to use the methods described in the following question: RunAs A different user when debugging in Visual Studio

Yet, what credentials do I need to use in order to pass through authentication?

like image 350
MichaelS Avatar asked Jan 30 '14 19:01

MichaelS


1 Answers

runas cannot start as System/Local Service/Network Service etc. But psexec -s can start a process as System.

-s Run the remote process in the System account.

like image 149
Remus Rusanu Avatar answered Sep 22 '22 12:09

Remus Rusanu