您好我在网络共享上有一些文件需要删除 ReparsePoint 属性。我试图将这些文件属性设置为“正常”,但没有删除“ReparsePoint”
Clear-Host
$Path = "\\network\share"
Get-ChildItem $Path -recurse -force | ForEach {
($_.Attributes = "normal")
}
如何从这些文件中删除“ReparsePoint”属性?
您好我在网络共享上有一些文件需要删除 ReparsePoint 属性。我试图将这些文件属性设置为“正常”,但没有删除“ReparsePoint”
Clear-Host
$Path = "\\network\share"
Get-ChildItem $Path -recurse -force | ForEach {
($_.Attributes = "normal")
}
如何从这些文件中删除“ReparsePoint”属性?