I am trying to run a process as another account. I have the command:
runas \"/user:WIN-CLR8YU96CL5\\network service\" \"abwsx1.exe\"
but th
In Task Scheduler, create a task to run the application under the NETWORK SERVICE user. You can then run the task from the command line using
schtasks /run /TN "taskname"
Where taskname is the name of your task.