在迁移到 Sharepoint 之前对文件服务器驱动器进行盘点的脚本

在迁移到 Sharepoint 之前对文件服务器驱动器进行盘点的脚本

我是 powershell 新手,我想编写一个脚本来创建我们文件服务器的完整清单。我尝试使用 --> Get-ChildItem -Path X -Force -Recurse | Export-Csv -Path X -Encoding ASCII -NoTypeInformation ,但总是出现错误。有什么提示吗?

多谢

PS C:\windows\system32> Get-ChildItem -Path \iv-ccl-vm-fp01\GLOBAL_Intervest -Force -Recurse | Export-Csv -Path C:\Users\NAHA\Documents\Test.csv -Encoding ASCII -NoTypeInformation Get-ChildItem : 将其添加到 \iv-ccl-vm-fp01\GLOBAL_Intervest\1 文件夹中。Algemeen\CanonScanFolder 是共同的。位于行:1 字符:1

  • 获取子项-路径 \iv-ccl-vm-fp01\GLOBAL_Intervest-Force-Recurse...
  •   + CategoryInfo          : PermissionDenied: (\\iv-ccl-vm-fp0...CanonScanFolder:String) [Get-ChildItem], UnauthorizedAccessException
      + FullyQualifiedErrorId : DirUnauthorizedAccessError,Microsoft.PowerShell.Commands.GetChildItemCommand
    
    

相关内容