Skip to content

Instantly share code, notes, and snippets.

@jeangjenq
Created March 20, 2022 07:44
Show Gist options
  • Save jeangjenq/b103caa81aad915847f7d8eb2785c72b to your computer and use it in GitHub Desktop.
Save jeangjenq/b103caa81aad915847f7d8eb2785c72b to your computer and use it in GitHub Desktop.
Delete reparse points in all directory/subdirectory/files with Powershell.
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