Powershell中模块功能的参数

时间:2015-09-08 19:18:16

标签: powershell powershell-v2.0

在尝试从中创建函数之前,我能够执行此命令..

$unzip ="c:\path\To\myZip.zip"
$dst = "c:\destination"
saps "c:\Program Files\winzip\wzunzip.exe" "-d $unzip $dst" -WindowStyle Hidden -Wait

然后我在一个模块中创建了这个函数,我试图将参数传递给..

function RunCmd ($cmd){
    write-host "cmd: $cmd" 
    saps $cmd -WindowStyle Hidden -Wait 
}

我已经验证模块已正确导入,但是当我尝试将参数传递给函数时,我得到错误,指出无法读取参数。

我尝试了多种传递参数的方法,但没有任何效果。

实施例

$cmd = @{'FilePath'= '$unzip';
     'ArgumentList'= '-d $unzip dst';}
RunCmd  @cmd


RunCmd """$unzip"" ""-d $unzip $dst"""

我注意到命令和参数将以双引号传递给函数做第二种选择,但是当我得到参数null异常时就是这样。

我还尝试更改函数以单独传递命令和参数,但没有成功。

function RunCmd ($cmd, $args){
    write-host "cmd: $cmd" 
    saps $cmd $args -WindowStyle Hidden -Wait 
}

有什么想法吗?

更新

这是我的新功能..

function RunCmd ($log, $cmd, $args){
    Log-Cmd $log
    saps -FilePath $cmd -ArgumentList $args -WindowStyle Hidden -Wait 
}

也试过..

> function RunCmd ($log, $cmd, [string[]]$args){
>     Log-Cmd $log
>     saps -FilePath $cmd -ArgumentList $args -WindowStyle Hidden -Wait  }

但是当函数尝试执行时,我得到一个错误,说明参数为空。

  

Start-Process:无法验证参数' ArgumentList'的参数。   参数为null,空或参数集合的元素   包含空值。提供不包含任何内容的集合   空值,然后再次尝试该命令。在   c:\ path \ to \ module \ myModule.psm1:39 char:38   + saps -FilePath $ cmd -ArgumentList<<<< $ args -WindowStyle Hidden -Wait       + CategoryInfo:InvalidData :( :) [Start-Process],ParameterBindingValidationException       + FullyQualifiedErrorId:ParameterArgumentValidationError,Microsoft.PowerShell.Commands.StartProcessCommand

我尝试了多种方法来调用此函数..

RunCmd -log $log -cmd $unzip -args '-d', '$unzip', '$dst'
RunCmd $log $unzip '-d', '$unzip', '$dst'
RunCmd $log $unzip "-d", "$unzip", "$dst"

1 个答案:

答案 0 :(得分:1)

您必须将参数作为字符串数组传递给Start-Process cmdlet。这是一个非常基本的例子:

function Unzip-File ($ZipFile, $Destination)
{
    $wzunzip = 'c:\Program Files\winzip\wzunzip.exe'
    Start-Process -WindowStyle Hidden -Wait -FilePath $wzunzip -ArgumentList (
        '-d',
        $ZipFile,
        $Destination
    ) 
}

Unzip-File 'c:\path\To\myZip.zip' 'c:\destination'

更新

  

有没有办法将exe文件传递给函数?生病   最终有多个exe文件进入记录的功能   该命令然后执行它。

不确定

function Start-ProcAndLog ($ExeFile, $CmdLine)
{
    Start-Process -WindowStyle Hidden -Wait -FilePath $ExeFile -ArgumentList $CmdLine
}

# Note commas in second parameter: '-arg1', '-arg2', '-arg3' is an array
Start-ProcAndLog 'c:\path\to\file.exe' '-arg1', '-arg2', '-arg3'