Hi I have some files on network share that I need to remove ReparsePoint attribute. I have tried to set those file attributes to 'Normal' but it didn't remove 'ReparsePoint'
Clear-Host
$Path = "\\network\share"
Get-ChildItem $Path -recurse -force | ForEach {
($_.Attributes = "normal")
}
How I can remove 'ReparsePoint' attribute from those files?