I want to launch the file c:\dfs-build.ps1
with the specific user and admin privileges for that I'm trying to use the below command but it's not working.
When I'm opening the powershell manually and running the below commands then it's working and able to run the commands in the c:\dfs-build.ps1
file with both svc and admin rights, but when I automate everything to trigger as soon as the server comes up then it's not working.
To suppress the yes or no pop-up while opening the PowerShell as Admin I have disabled the ConsentPromptBehaviorAdmin
in Registry but still no luck. Can anyone help me that what am i doing wrong.
$cred = New-Object System.Management.Automation.PsCredential("domain\user", (ConvertTo-SecureString "pwds" -AsPlainText -Force))
$args1 = "c:\dfs-build.ps1"
Start-Process powershell.exe -Credential $cred -ArgumentList "Start-Process powershell.exe -Argumentlist '-file $args1' -verb RunAs"
Your code is indeed correct in principle (though additional quoting would be needed if your script file path contained spaces).
There are only two basic ways to avoid an (invariably interactive-only) UAC confirmation prompt:
Disable UAC altogether, which is strongly discouraged.
ConsentPromptBehaviorAdmin
registry value atHKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System
to0x0
: This still requires requesting elevation, but - assuming that the calling user is an administrator - automatically grants it.Launch your process from a process that itself has been elevated (is running with administrative privileges), of necessity with the same user identity.
Without either, your inner
Start-Process
call, with-Verb RunAs
, will trigger a UAC confirmation prompt.General tips for starting an elevated process as a different user:
You indeed need to nest
Start-Process
calls - the outer one to start a process with as a different user (-Credential
) and the inner one to start on as that different user with elevation (with admin privileges,-Verb RunAs
) - because you cannot do both in a single call.There are pitfalls:
If the target user identified by the credentials isn't permitted to access the caller's working directory, an error occurs (with administrator credentials, this is unlikely to occur, however).
The workaround is to use
Start-Process
's-WorkingDirectory
parameter to specify a directory that the target user is allowed to access; e.g.,C:\
is a safe bet.However, (even with direct
-Verb RunAs
use) the elevatedpowershell.exe
process will not preserve its caller's working directory and defaults toC:\Windows\System32
instead - see this answer for background information.Quoting gets tricky with such nested calls; a here-string (
@"<newline>...><newline>"@
or@'<newline>...><newline>'@
) helps a bit, because it obviates the need for escaping escaping embedded quote chars.The nesting of
powershell.exe
calls means that the outer process - whose sole purpose is to asynchronously launch the elevated process - is transitory and short-lived, which can be visually disruptive (a window pops up and closes shortly after).-WindowStyle Hidden
in the outerStart-Process
call avoids this.Therefore:
Note the need to
\
-escape"
chars. that are to be preserved as part of the command seen bypowershell.exe
's (implied)-Command
argument after initially parsing its command line - see this answer for background information.