I use a batch file to run a powershell script for my non-Tech co-workers.
I need to run this script with alt creds so it will install a piece of software.
I know its not best but I dont care if the password is in clear text in the script.
any help would be greatly appreciated!
hears my batch file to kick off the ps script:
@ECHO OFF
SET ThisScriptsDirectory=%~dp0
SET PowerShellScriptPath=%ThisScriptsDirectory%MyScript.ps1
PowerShell -NoProfile -ExecutionPolicy Bypass -Command ‘Start-Process PowerShell -ArgumentList ‘-NoProfile -ExecutionPolicy Bypass -File “”%PowerShellScriptPath%“”’ -Verb RunAs’
thank again