Hi,
You can use the "-Credential" parameter in the Start-Process cmdlet to specify the administator account so that Update Assistant starts with elevated permissions.
$cred = Get-Credential
Start-Process -FilePath $UpdaterBinary -ArgumentList $UpdaterArguments -Credential $cred
Please refer to this link for more detals.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.