From 532425e2a02f76282ec7663eb704c6ced7b89271 Mon Sep 17 00:00:00 2001 From: ThioJoe <12518330+ThioJoe@users.noreply.github.com> Date: Thu, 16 Apr 2026 10:47:37 -0700 Subject: [PATCH] SandboxStartup.ps1 - Remove "about this picture" shortcut Removes the "about this picture" shortcut leftover on the desktop. --- Startup Scripts/SandboxStartup.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Startup Scripts/SandboxStartup.ps1 b/Startup Scripts/SandboxStartup.ps1 index f40d619..aa0e7ae 100644 --- a/Startup Scripts/SandboxStartup.ps1 +++ b/Startup Scripts/SandboxStartup.ps1 @@ -47,6 +47,7 @@ Set-ItemProperty -Path "HKCU:\Console" -Name "ScreenBufferSize" -Value 214741823 New-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\DesktopSpotlight\Settings" -Force | Out-Null # Ensures the key exists Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\DesktopSpotlight\Settings" -Name "EnabledState" -Value 0 -Type DWord Copy-Item -Path "C:\Windows\Web\Wallpaper\Windows\img0.jpg" -Destination "$env:APPDATA\Microsoft\Windows\Themes\TranscodedWallpaper" -Force # For dark theme wallpaper, use "img19.jpg" instead of img0.jpg +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{2cc5ca98-6485-489a-920e-b3e88a6ccce3}" /t REG_DWORD /d 1 /f # Removes the "about this picture" icon on desktop. # -----------------------------------------------------------------------------------------