Jump to content
Pulseway 9.14 🔥

Featured Replies

Posted

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
 

Create an account or sign in to comment