Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'RESTORE DEFAULT DESKTOP ICONS
Set WshShell = CreateObject ("WScript.Shell")
' HIDDEN OR VISIBLE
' 1 = HIDDEN
' 0 = VISIBLE
' My Documents: "{450D8FBA-AD25-11D0-98A8-0800361B1103}"
' My Computer: "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
' My Network Places: "{208D2C60-3AEA-1069-A2D7-08002B30309D}"
' Internet Explorer: "{871C5380-42A0-1069-A2EA-08002B30309D}"
' Recycle Bin: "{645FF040-5081-101B-9F08-00AA002F954E}"
sroot = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel\"
WshShell.RegWrite sroot & "{450D8FBA-AD25-11D0-98A8-0800361B1103}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{20D04FE0-3AEA-1069-A2D8-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{208D2C60-3AEA-1069-A2D7-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{871C5380-42A0-1069-A2EA-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{645FF040-5081-101B-9F08-00AA002F954E}", "00000001", "REG_DWORD"
sroot = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu\"
WshShell.RegWrite sroot & "{450D8FBA-AD25-11D0-98A8-0800361B1103}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{20D04FE0-3AEA-1069-A2D8-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{208D2C60-3AEA-1069-A2D7-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{871C5380-42A0-1069-A2EA-08002B30309D}", "00000000", "REG_DWORD"
WshShell.RegWrite sroot & "{645FF040-5081-101B-9F08-00AA002F954E}", "00000001", "REG_DWORD"
'RESTORE NAMES DEFAULT DESKTOP ICONS
sroot = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\"
WshShell.RegWrite sroot & "{450D8FBA-AD25-11D0-98A8-0800361B1103}\", "My Documents"
WshShell.RegWrite sroot & "{208D2C60-3AEA-1069-A2D7-08002B30309D}\", "My Network Places"
WshShell.RegWrite sroot & "{20D04FE0-3AEA-1069-A2D8-08002B30309D}\", ""
WshShell.RegWrite sroot & "{871C5380-42A0-1069-A2EA-08002B30309D}\", "Internet Explorer"
WshShell.RegWrite sroot & "{645FF040-5081-101B-9F08-00AA002F954E}\", "Recycle Bin"
' CHANGE "MY COMPUTER" TO "USERNAME ON COMPUTERNAME"
sroot = "HKEY_CLASSES_ROOT\CLSID\"
WshShell.RegWrite sroot & "{20D04FE0-3AEA-1069-A2D8-08002B30309D}\LocalizedString", "%USERNAME% on %COMPUTERNAME%", "REG_EXPAND_SZ"
WshShell.RegWrite sroot & "{20D04FE0-3AEA-1069-A2D8-08002B30309D}\LocalizedString.old", "@%SystemRoot%\system32\SHELL32.dll,-9216" , "REG_EXPAND_SZ"
Set WshShell = nothing