3

我有下面的静默卸载/等待/安装脚本,我需要推送给用户,但我需要编写脚本以便它以管理员身份运行,我找到了一些脚本,但我不明白如何编写脚本,任何帮助赞赏。另外,我必须将管理员脚本放入两次吗?(即在卸载脚本的第一行,然后在第二个安装脚本的行之前)还是在我运行它时只运行一次?

Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -eq "On-Screen Takeoff"} | foreach-

object -process {$_.Uninstall()}

Start-Sleep -Seconds 25

$arguments="/quiet"

Start-Process "\\davisconstruction.com\ROOT\Installs\OnCenter\OST\Testverion3906\ost3906.msi" $arguments
4

1 回答 1

5

有两种方法:

  1. 您可以通过转到“开始”->“管理工具”->“Windows PowerShell 模块”或“Windows PowerShell ISE”右键单击“开始”-->“Windows PowerShell 模块”或“Windows PowerShell ISE” . 选择“以管理员身份运行”。您在该窗口中运行的任何内容都将作为“管理员”。

  2. 将您的脚本运行为:

    启动进程“$psHome\powershell.exe”-verb runas -ArgumentList“-file fullpathofthescript”

于 2013-09-25T12:31:15.397 回答