从文件读取配置时调用命令失败并显示 $env 变量失败

Invoke-Command fails with $env Variable fails when configuration is read from a file

我正在尝试通过 PowerShell 从远程系统检索文件。为此,我在此会话中使用了 New-PSSession 和 Invoke-Command。

$latestFolder = Invoke-Command -Session $remoteSession -ScriptBlock{param($path) Get-ChildItem $path -Directory -Name} -ArgumentList $path

如果我将路径设置为 $Path = "$env:SystemRoot\System32" 它工作得很好,但如果我将它设置为从配置文件 (json) 读取的字符串,它会给我带来最奇怪的问题。一个是它找不到参数 -Directory,如果我省略 -Directory 和 -Name 参数,错误消息是 Ein Laufwerk mit dem Namen "$env" ist nicht vorhanden。 大致翻译为 名为“$env”的驱动器不可用。

配置文件如下所示:

{
    "File": [
        {
            "Name": "TEST",
            "Active": true,
            "Path": "$env:SystemRoot\System32"
        }
    ]
}

Powershell 脚本如下:

$logFilePath = Join-Path (get-item $PSScriptRoot).FullName "Test.json"
$logConfig = Get-Content -Path $logFilePath | ConvertFrom-Json

$windowsUser = "username"
$windowsUserPassword = "password"
$windowsUserPasswordsec = $windowsUserPassword | ConvertTo-SecureString -AsPlainText -Force
$Server = "server"

$Path = "$env:SystemRoot\System32"
$Path = $logConfig.File[0].Path

$sessioncred = new-object -typeName System.Management.Automation.PSCredential -ArgumentList $windowsUser, $windowsUserPasswordsec
$remoteSession = New-PSSession -ComputerName $Server -Credential $sessioncred -Authentication "Kerberos"

$latestFolder = Invoke-Command -Session $remoteSession -ScriptBlock{param($path) Get-ChildItem $path -Directory -Name} -ArgumentList $Path
$latestFolder

您需要显式扩展从 Json 文件中的 Path 元素读取的字符串。

应该这样做:

$Path = $ExecutionContext.InvokeCommand.ExpandString($logConfig.File[0].Path)

另一种方法是使用 Invoke-Expression:

$Path = Invoke-Expression ('"{0}"' -f $logConfig.File[0].Path)