6

我正在尝试让PowerShell将文件从远程计算机(我通过AD拥有管理员权限)复制到本地计算机。它在最奇怪的地方失败了。这是脚本的一个片段:

    $configs = Get-ChildItem -Recurse -ErrorAction SilentlyContinue -Filter "*.config" $serverUNCPath 
foreach($config in $configs){
    $config_target_dir = $dest.Path + $config.Directory.FullName.Replace($serverUNCPath,"")
    if(Test-Path -Path $config_target_dir){
        Copy-Item $config -Destination  $config_target_dir
    }
}

它失败并显示消息

Cannot find path 'D:\ServerDeploy\TestMachine1\website\web.config' because it does not exist.
At :line:39 char:12
+           Copy-Item <<<<  $config -Destination  $config_target_dir

路径D:\ServerDeploy\TestMachine1\website存在。我要疯了。

我能做些什么来修复它?

4

1 回答 1

7

Eeeeh.... 好吗?

如果我更换了线路

 Copy-Item $config -Destination  $config_target_dir

 Copy-Item $config.FullName $config_target_dir

它突然神奇地起作用了....

是什么赋予了?

于 2009-09-03T07:22:44.857 回答