14 lines
637 B
PowerShell
14 lines
637 B
PowerShell
$Keys = @(
|
|
|
|
# Deactivate showing of last used files
|
|
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolderDesktop\NameSpace\DelegateFolders\{3134ef9c-6b18-4996-ad04-ed5912e00eb5}"
|
|
|
|
# Deactivate showing of last used folders
|
|
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolderDesktop\NameSpace\DelegateFolders\{3936E9E4-D92C-4EEE-A85A-BC16D5EA0819}"
|
|
)
|
|
|
|
#This writes the output of each key it is removing and also removes the keys listed above.
|
|
ForEach ($Key in $Keys) {
|
|
Write-Output "Removing $Key from registry"
|
|
Remove-Item $Key -Recurse
|
|
} |