start-process with different user credentials as system user getting access denied
i have trying launch powershell script different users using start-process while running system account. ideas how can around this. here code. param($id) set-executionpolicy unrestricted $username = 'blah' $password = 'blahblah' $cred = new-object system.management.automation.pscredential -argumentlist @($username,(convertto-securestring -string $password -asplaintext -force)) start-process -filepath c:\scomscripts\ack_scom_alert.cmd -argumentlist $id -credential $cred -wait -passthru
hi ross,
thanks posting here.
i’d suggest first set program(ack_scom_alert.cmd) system service using sc if want initiate system account:
running cmd.exe local system
http://blogs.msdn.com/b/adioltean/archive/2004/11/27/271063.aspx
thanks.
tiger li
please remember click “mark answer” on post helps you, , click “unmark answer” if marked post not answer question. can beneficial other community members reading thread.
Windows Server > Windows PowerShell
Comments
Post a Comment