powershell: script to start a program with parameters?

淺唱寂寞╮ 提交于 2019-12-24 00:56:49

问题


When i run the Powershell script below i receive the error below. How do i run programs through powershell with parameters? The script will be a group policy logon.

Invoke-Expression : A positional parameter cannot be found that accepts argument '\TBHSERVER\NETLOGON\BGInfo\BGIFILE.bgi /timer:0 /s ilent /nolicprompt '. At X:\Systems\scripts\PowerShell\UpdateDesktopWithBGInfo.ps1:6 char:18 + Invoke-Expression <<<< $logonpath $ArguList + CategoryInfo : InvalidArgument: (:) [Invoke-Expression], ParameterBindingException + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.InvokeExpressionCommand

$LogonPath = $env:LOGONSERVER + "\NETLOGON\BGInfo\Bginfo.exe" 
$ArguList = $env:LOGONSERVER + '\NETLOGON\BGInfo\BGIFILE.bgi /timer:0 /silent /nolicprompt '
invoke-command $LogonPath
Invoke-Expression $logonpath $ArguList

回答1:


Try this:

& "\\$env:LOGONSERVER\NETLOGON\BGInfo\Bginfo.exe" "\\$env:LOGONSERVER\NETLOGON\BGInfo\BGIFILE.bgi" /timer:0 /silent /nolicprompt

If the BGIFILE.bgi reside in the same location as Bginfo.exe then you can specify only the file name:

& "\\$env:LOGONSERVER\NETLOGON\BGInfo\Bginfo.exe" BGIFILE.bgi /timer:0 /silent /nolicprompt



回答2:


Invoke-Command is best suited for running commands remotely. As Shay points out you can use the ampersand & to tell PowerShell to execute something locally just like the cmd.exe shell.

In order to make Invoke-Command work you would need to do something like this:

$program = "C:\windows\system32\ping.exe"
$programArgs = "localhost", "-n", 1
Invoke-Command -ScriptBlock { & $program $programArgs }

Notice the use of the the ampersand in the script block. So if you are running a command locally just use the ampersand as Shay's example shows.



来源:https://stackoverflow.com/questions/8791066/powershell-script-to-start-a-program-with-parameters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!