Cezar Posted September 4, 2023 Posted September 4, 2023 Deze script werkt als het gerunt is van een user account maar niet vanuit pulseway.  $password = ConvertTo-SecureString "your_password" -AsPlainText -Force $credentials = New-Object System.Management.Automation.PSCredential("your_username", $password) $scriptBlock = {   Start-Process powershell -Verb RunAs   Write-Host "Running with elevated privileges!" } $encodedCommand = [Convert]::ToBase64String([Text.Encoding]::Unicode.GetBytes($scriptBlock)) Start-Process powershell.exe -ArgumentList "-NoProfile -EncodedCommand $encodedCommand" -Credential $credentials Â
Administrators Anne Posted September 4, 2023 Administrators Posted September 4, 2023 Hi Cezar, Try running the above script in workflows as an execute shell command as there you get the access to run as a user or on a system level  Thanks, StefanÂ
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now