Update UnpinStart function for GUI/CLI scripts

pull/352/head^2
David Wright 3 years ago
parent c9d27e3ae2
commit 77c218929e

@ -667,15 +667,64 @@ Function UninstallOneDrive {
} }
Function UnpinStart { Function UnpinStart {
#https://superuser.com/questions/1068382/how-to-remove-all-the-tiles-in-the-windows-10-start-menu # https://superuser.com/a/1442733
#Unpins all tiles from the Start Menu #Requires -RunAsAdministrator
Write-Host "Unpinning all tiles from the start menu"
(New-Object -Com Shell.Application). $START_MENU_LAYOUT = @"
NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}'). <LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
Items() | <LayoutOptions StartTileGroupCellWidth="6" />
% { $_.Verbs() } | <DefaultLayoutOverride>
? {$_.Name -match 'Un.*pin from Start'} | <StartLayoutCollection>
% {$_.DoIt()} <defaultlayout:StartLayout GroupCellWidth="6" />
</StartLayoutCollection>
</DefaultLayoutOverride>
</LayoutModificationTemplate>
"@
$layoutFile="C:\Windows\StartMenuLayout.xml"
#Delete layout file if it already exists
If(Test-Path $layoutFile)
{
Remove-Item $layoutFile
}
#Creates the blank layout file
$START_MENU_LAYOUT | Out-File $layoutFile -Encoding ASCII
$regAliases = @("HKLM", "HKCU")
#Assign the start layout and force it to apply with "LockedStartLayout" at both the machine and user level
foreach ($regAlias in $regAliases){
$basePath = $regAlias + ":\SOFTWARE\Policies\Microsoft\Windows"
$keyPath = $basePath + "\Explorer"
IF(!(Test-Path -Path $keyPath)) {
New-Item -Path $basePath -Name "Explorer"
}
Set-ItemProperty -Path $keyPath -Name "LockedStartLayout" -Value 1
Set-ItemProperty -Path $keyPath -Name "StartLayoutFile" -Value $layoutFile
}
#Restart Explorer, open the start menu (necessary to load the new layout), and give it a few seconds to process
Stop-Process -name explorer
Start-Sleep -s 5
$wshell = New-Object -ComObject wscript.shell; $wshell.SendKeys('^{ESCAPE}')
Start-Sleep -s 5
#Enable the ability to pin items again by disabling "LockedStartLayout"
foreach ($regAlias in $regAliases){
$basePath = $regAlias + ":\SOFTWARE\Policies\Microsoft\Windows"
$keyPath = $basePath + "\Explorer"
Set-ItemProperty -Path $keyPath -Name "LockedStartLayout" -Value 0
}
#Restart Explorer and delete the layout file
Stop-Process -name explorer
# Uncomment the next line to make clean start menu default for all new users
#Import-StartLayout -LayoutPath $layoutFile -MountPath $env:SystemDrive\
Remove-Item $layoutFile
} }
Function Remove3dObjects { Function Remove3dObjects {

@ -723,43 +723,64 @@ $RemoveAllBloatware.Add_Click( {
} }
Function UnpinStart { Function UnpinStart {
#Credit to Vikingat-Rage # https://superuser.com/a/1442733
#https://superuser.com/questions/1068382/how-to-remove-all-the-tiles-in-the-windows-10-start-menu # Requires -RunAsAdministrator
#Unpins all tiles from the Start Menu
Write-Host "Unpinning all tiles from the start menu" $START_MENU_LAYOUT = @"
(New-Object -Com Shell.Application). <LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}'). <LayoutOptions StartTileGroupCellWidth="6" />
Items() | <DefaultLayoutOverride>
% { $_.Verbs() } | <StartLayoutCollection>
? { $_.Name -match 'Un.*pin from Start' } | <defaultlayout:StartLayout GroupCellWidth="6" />
% { $_.DoIt() } </StartLayoutCollection>
} </DefaultLayoutOverride>
</LayoutModificationTemplate>
"@
$layoutFile="C:\Windows\StartMenuLayout.xml"
#Delete layout file if it already exists
If(Test-Path $layoutFile)
{
Remove-Item $layoutFile
}
#Creates the blank layout file
$START_MENU_LAYOUT | Out-File $layoutFile -Encoding ASCII
Function Remove3dObjects { $regAliases = @("HKLM", "HKCU")
#Removes 3D Objects from the 'My Computer' submenu in explorer
Write-Output "Removing 3D Objects from explorer 'My Computer' submenu" #Assign the start layout and force it to apply with "LockedStartLayout" at both the machine and user level
$Objects32 = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}" foreach ($regAlias in $regAliases){
$Objects64 = "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}" $basePath = $regAlias + ":\SOFTWARE\Policies\Microsoft\Windows"
If (Test-Path $Objects32) { $keyPath = $basePath + "\Explorer"
Remove-Item $Objects32 -Recurse IF(!(Test-Path -Path $keyPath)) {
New-Item -Path $basePath -Name "Explorer"
}
Set-ItemProperty -Path $keyPath -Name "LockedStartLayout" -Value 1
Set-ItemProperty -Path $keyPath -Name "StartLayoutFile" -Value $layoutFile
} }
If (Test-Path $Objects64) {
Remove-Item $Objects64 -Recurse #Restart Explorer, open the start menu (necessary to load the new layout), and give it a few seconds to process
Stop-Process -name explorer
Start-Sleep -s 5
$wshell = New-Object -ComObject wscript.shell; $wshell.SendKeys('^{ESCAPE}')
Start-Sleep -s 5
#Enable the ability to pin items again by disabling "LockedStartLayout"
foreach ($regAlias in $regAliases){
$basePath = $regAlias + ":\SOFTWARE\Policies\Microsoft\Windows"
$keyPath = $basePath + "\Explorer"
Set-ItemProperty -Path $keyPath -Name "LockedStartLayout" -Value 0
} }
}
#Restart Explorer and delete the layout file
Function CheckDMWService { Stop-Process -name explorer
Param([switch]$Debloat) # Uncomment the next line to make clean start menu default for all new users
#Import-StartLayout -LayoutPath $layoutFile -MountPath $env:SystemDrive\
If (Get-Service dmwappushservice | Where-Object { $_.StartType -eq "Disabled" }) {
Set-Service dmwappushservice -StartupType Automatic
}
If (Get-Service dmwappushservice | Where-Object { $_.Status -eq "Stopped" }) { Remove-Item $layoutFile
Start-Service dmwappushservice
}
} }
Function CheckInstallService { Function CheckInstallService {

Loading…
Cancel
Save