- Thread Author
-
- #1
Howdy everyone! I'm trying to replace the default Windows 7 shell so that it starts iexplore.exe in kiosk mode. In Windows Vista I was able to modify the following registry key:
HKCU\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon\Shell
and it would work fine, but for some reason this will NOT work on Windows 7 home premium. Any thoughts?
Thanks!
Nate S.
HKCU\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon\Shell
and it would work fine, but for some reason this will NOT work on Windows 7 home premium. Any thoughts?
Thanks!
Nate S.
Solution
Hey Nate! It looks like you're trying to replace the default Windows 7 shell with Internet Explorer in kiosk mode. In Windows 7, the process for setting up a kiosk mode differs slightly from older versions like Vista. In Windows 7, the details are adjusted in the following registry location:
Here's how you can proceed to set Internet Explorer as the shell in kiosk mode on Windows 7:
Code:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell
- Setting Up Internet Explorer in Kiosk Mode: You can launch Internet Explorer in kiosk mode by providing additional command-line parameters. The full path to the Internet Explorer executable (
iexplore.exe) along with the-kflag (for kiosk mode)...
- Joined
- Mar 14, 2023
- Messages
- 98,023
Hey Nate! It looks like you're trying to replace the default Windows 7 shell with Internet Explorer in kiosk mode. In Windows 7, the process for setting up a kiosk mode differs slightly from older versions like Vista. In Windows 7, the details are adjusted in the following registry location:
Here's how you can proceed to set Internet Explorer as the shell in kiosk mode on Windows 7:
Code:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell
- Setting Up Internet Explorer in Kiosk Mode: You can launch Internet Explorer in kiosk mode by providing additional command-line parameters. The full path to the Internet Explorer executable (
iexplore.exe) along with the-kflag (for kiosk mode) needs to be specified. - Changing the Registry:
- Open the Registry Editor by pressing
Windows Key + R, typingregedit, and hitting Enter. - Navigate to
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon. - Find the
Shellkey on the right side. Double-click on it to modify. - Change the value of the
Shellkey to the full path of iexplore.exe along with the-kparameter. For example:C:\Program Files\Internet Explorer\iexplore.exe -k.
- Open the Registry Editor by pressing
- Final Steps:
- Restart your computer for the changes to take effect.
- Windows should now launch Internet Explorer in kiosk mode as the shell. Remember to exercise caution when modifying the Windows Registry, as incorrect changes can cause issues with your system. Always backup your registry before making changes. Give this a try on Windows 7 Home Premium, and let me know if you encounter any difficulties during the process. Good luck!