mirror of
https://github.com/jazir555/GamesDows.git
synced 2025-06-05 07:07:23 +02:00
README.md
This commit is contained in:
parent
d6f6ee52d2
commit
17bffaffb6
21
README.md
21
README.md
@ -1,31 +1,38 @@
|
||||
# Windows-Game-Mode
|
||||
Windows boots straight into Steam Big Picture without displaying any explorer UI elements
|
||||
The Enable Game Mode script makes Windows boots straight into Steam Big Picture without displaying any explorer UI elements
|
||||
|
||||
**Here's a breakdown of what each part of the script does**:
|
||||
|
||||
**1. Set Steam Big Picture as Default Shell:**
|
||||
|
||||
Disables echoing the command to the console (@echo off).
|
||||
|
||||
Enables the use of advanced scripting features (SETLOCAL EnableExtensions).
|
||||
|
||||
Changes the Windows shell from the default explorer.exe to Steam's Big Picture mode. It modifies the Windows Registry to make Steam.exe -bigpicture the default shell that launches upon user login.
|
||||
|
||||
**2. Create and Set Up a Delayed Start Script for Explorer:**
|
||||
|
||||
Defines paths for the Steam folder and script names.
|
||||
Defines paths for the Steam folder and Delayed Explorer Start script name.
|
||||
|
||||
Creates a batch file (DelayedExplorerStart.bat) that checks if the user is logged on. If the user is logged on, it sets the shell back to Windows Explorer (explorer.exe) after a delay, allowing Steam Big Picture to launch first.
|
||||
Creates a batch file (DelayedExplorerStart.bat) that checks if the user is logged on. If the user is logged on, it sets the shell back to Windows Explorer (explorer.exe) after a delay, allowing Steam Big Picture to launch first.
|
||||
|
||||
After booting directly into Steam Big Picture, Explorer.exe is launched automatically so that the "Exit to Desktop" menu item in Steam Big Picture works as expected. You do not need to launch a shortcut from within Big Picture first in order to be able exit to the desktop.
|
||||
|
||||
**3. Create a VBScript to Run the Batch File Silently:**
|
||||
|
||||
A VBScript (RunBatchSilently.vbs) is created to run the DelayedExplorerStart.bat silently. This means the batch file will run without opening a visible command prompt window.
|
||||
A VBScript (RunBatchSilently.vbs) is created to run the DelayedExplorerStart.bat to suppress the command prompt window/run silently. This means the batch file will launch explorer in the background without opening a visible command prompt window over the Steam Big Picture UI.
|
||||
|
||||
**4. Set Up a Scheduled Task to Run the Script at Logon:**
|
||||
**4. Set Up a Scheduled Task to Run the DelayedExplorerStart.bat Script at Logon/bootup:**
|
||||
|
||||
Prepares an XML file to define a scheduled task. This task will trigger the VBScript at user logon.
|
||||
Creates an XML file to define a scheduled task. This task will trigger the VBScript at user logon.
|
||||
|
||||
Deletes any existing scheduled task with the same name and creates a new one using the XML configuration. This ensures that the DelayedExplorerStart.bat script runs every time the user logs on.
|
||||
|
||||
**5. Enable Automatic Logon and Disable Boot UI:**
|
||||
|
||||
Configures Windows to automatically log in with the current user account (AutoAdminLogon).
|
||||
|
||||
Sets an empty default password for automatic logon (DefaultPassword).
|
||||
Disables the boot user interface (bootuxdisabled), which affects the visual elements displayed during system startup.
|
||||
|
||||
6. The command "bcdedit.exe -set {globalsettings} bootuxdisabled on" disables the boot user interface (bootuxdisabled). This disables Windows Branded Boot, and therefore no Windows logo is displayed when the OS boots.
|
||||
|
Loading…
x
Reference in New Issue
Block a user