Run as System account
Below is a way to run as System account in Windows computers:
psexec -i -s cmd.exe
-i : Interactive
-s : System account
cmd.exe : launch command window to execute other commands
To run Powershell as system account:
psexec -i -s powershell.exe
To run Powershell as system account:
psexec -i -s powershell.exe
Comments
Post a Comment