小编sat*_*mar的帖子

如何从路径中删除Microsoft.PowerShell.Core\FileSystem :: \\

我正在比较所有子文件夹与powershell的文件夹,并在我的本地机器上正常工作.但当我在服务器上尝试它时,它给我错误并追加

Microsoft.PowerShell.Core\FileSystem::\\
Run Code Online (Sandbox Code Playgroud)

到所有文件

如果有人早点做这样的工作,请帮忙

我的剧本是

$Path = '\\Server1\Folder1'

Get-ChildItem $Path -Recurse | ? { !$_.PSIsContainer } | % { 
        Add-Member -InputObject $_ -MemberType NoteProperty -Name RelativePath -Value $_.FullName.Substring($Path)
        $_
    }
Run Code Online (Sandbox Code Playgroud)

它给我错误

Cannot convert argument "0", with value: "Microsoft.PowerShell.Core\FileSystem::\\Server1\Folder1\ServerListPowershell", for "Substring" to type "System.Int32": "Cannot convert value "M
icrosoft.PowerShell.Core\FileSystem::\\Server1\Folder1\ServerListPowershell" to type "System.Int32". Error: "Input string was not in a correct format.""
At C:\Users\cwr.satish.kumar\AppData\Local\Temp\898f72f1-a0d3-4003-b268-128c5efc9f2b.ps1:14 char:108
+         Add-Member -InputObject $_ -MemberType NoteProperty -Name RelativePath -Value $_.FullName.Substring <<<< ($Path)
    + CategoryInfo          : NotSpecified: (:) …
Run Code Online (Sandbox Code Playgroud)

powershell

12
推荐指数
1
解决办法
1万
查看次数

标签 统计

powershell ×1