Skip to content

Instantly share code, notes, and snippets.

@dima-iholkin
Last active February 11, 2020 20:05
Show Gist options
  • Save dima-iholkin/e5df58eff1b36939f016fb22169e9c5c to your computer and use it in GitHub Desktop.
Save dima-iholkin/e5df58eff1b36939f016fb22169e9c5c to your computer and use it in GitHub Desktop.
Remove-FileExplorerShortcut
function Disable-FileExplorerAdobeCC {
Set-ItemProperty -path "HKCU:\Software\Classes\CLSID\{0E270DAA-1BE6-48F2-AC49-D6F5D56BD88B}" -Name "System.IsPinnedToNameSpaceTree" -value 0 -Type DWord;
Read-Host -Prompt "Press Enter to exit";
}
Disable-FileExplorerAdobeCC;
function Disable-FileExplorerOneDrive {
Set-ItemProperty -path "HKCU:\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" -Name "System.IsPinnedToNameSpaceTree" -value 0 -Type DWord;
Read-Host -Prompt "Press Enter to exit";
}
Disable-FileExplorerOneDrive;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment