Created
March 20, 2022 07:44
-
-
Save jeangjenq/b103caa81aad915847f7d8eb2785c72b to your computer and use it in GitHub Desktop.
Delete reparse points in all directory/subdirectory/files with Powershell.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Recurse -Attributes Reparsepoint | % { $n = $_.FullName.Trim(“\”); fsutil reparsepoint delete “$n” } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment