PowerShell - Set-FsrmQuota时路径出错

时间:2015-07-28 08:21:45

标签: powershell fileserver

我正在尝试创建一个更改远程服务器上特定目录配额的脚本。为此,我使用以下代码($Quota$chosen_username作为参数输入):

$prefix_path = "C:\Shares\Users\";
$path = $prefix_path + $chosen_username;

if($Quota){
    invoke-command -computername $servername {Set-FsrmQuota -path $path -Size $Quota+"GB"}
}

if((invoke-command -computername $servername {Get-FsrmQuota -path $path} | select @{n='QuotaSize'; e={$_.Size / 1gb -as [int]}}).QuotaSize -eq $Quota){
    return "Success."
} else {
    return "Failed."
}

它给了我这个错误:

Cannot bind argument to parameter 'Path' because it is an empty string.
       + CategoryInfo          : InvalidData: (:) [Set-FsrmQuota], ParameterBindingValidationException
       + FullyQualifiedErrorId : ParameterArgumentValidationErrorEmptyStringNotAllowed,Set-FsrmQuota
       + PSComputerName        : ServerName

我已经完成了调试,$path的值是正确的。

1 个答案:

答案 0 :(得分:0)

在远程计算机上使用invoke-command时,远程主机的本地变量是未知的,因此您必须使用以下任一项:

  • PS> = 3

    使用前缀
    invoke-command -computername $servername {Set-FsrmQuota -path $using:path -Size $using:Quota+"GB"}
    
  • PS的 argumentlist 参数< 3

    invoke-command -computername $servername {Set-FsrmQuota -path $args[0] -Size $args[1]+"GB"} -argumentlist $path,$quota