Interactive command line as a NETWORK service

How to open an interactive application such as cmd.exe or Windows Explorer running as a NETWORK SERVICE? There are ways to do this for the SYSTEM account, but NETWORK SERVICE proves to be a problem. I need this to work on Windows 7, but it would be interesting to also use solutions for other versions of Windows.

+15
security authentication windows
Nov 11 2018-10-11T00:
source share
2 answers
+20
Nov 11 '10 at 6:11
source share

Here is how you could use PsExec to run cmd.exe in the context of the user "NETWORK SERVICE":

psexec -i -u "nt authority\network service" cmd.exe 
+3
Jun 02 '17 at 19:20
source share



All Articles