Powsershell脚本运行2 EXE-具有管理员特权和当前记录的用户



我想为:

编写一个powershell脚本
  • 1在管理员特权中运行EXE来安装软件
  • 2在没有凭据提示的情况下运行另一个具有当前已记录的用户权限的EXE。

这是我的powershell脚本:

# This Powershell script is used to deploy an application on user desktop who don't have Administrative rights
# This script is run as Administrator

# Get current user logged
$user = Get-WmiObject -Class win32_computersystem | % Username
write-host "User: " $user

#Start the process with the Administrative privilege
(Start-Process -FilePath "setup.exe").WaitForExit()
#Start the process agent as current user logged
Start-Process -FilePath "agent.exe" -Credential $User

谢谢您的帮助。

我通过这样做解决了我的问题:

    #Start the setup with the Administrative privilege
    Write-Host "Start setup"
    Start-Process -FilePath $LocalSetupFilePath -ArgumentList "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART -Encryption=Auto" -NoNewWindow -Wait
    Write-Host "Installation completed"
    #Create scheduled task for start agent
    $agentTaskName = "RunAgent"
    $taskPath = ""
    $OSArch = (Get-WmiObject -class Win32_OperatingSystem).OSArchitecture
    Write-Host "OSArchitecture= $OSArch"
    If ($OSArch -like '64*') {
        $ProgFilePath=$env:ProgramW6432
    } else
    { 
        $ProgFilePath=$env:ProgramFiles
    }
    $agentFilePath = [IO.Path]::Combine($ProgFilePath, "agent.exe")
    Write-Host "Run $agentFilePath"
    $time = (Get-Date).AddHours(1).ToShortTimestring();
    # Create & Run scheduled task to start agent
    schtasks /create /s $ComputerName /tn $agentTaskName /sc once /tr "cmd /c start '' '$agentFilePath'" /st $time /ru $UserName
    schtasks /run /tn $agentTaskName
    Start-Sleep -Seconds 5
    Write-Host "Stop & delete $agentTaskName"
    #Stop scheduled task
    schtasks /end /tn $agentTaskName
    #Remove scheduled task
    schtasks /delete /tn $agentTaskName /f
    Write-Host "Success"

最新更新