From 14313ea3f149149c55b6e73225ffc9d481714b16 Mon Sep 17 00:00:00 2001 From: jazir5 <31750063+jazir555@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:29:18 -0700 Subject: [PATCH] Delete Disable GamesDows.bat --- Disable GamesDows.bat | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Disable GamesDows.bat diff --git a/Disable GamesDows.bat b/Disable GamesDows.bat deleted file mode 100644 index 99155ed..0000000 --- a/Disable GamesDows.bat +++ /dev/null @@ -1,39 +0,0 @@ -@echo off -SETLOCAL EnableExtensions EnableDelayedExpansion -SET "STEAM_FOLDER=C:\Program Files (x86)\Steam" -SET "SCRIPT_NAME=DelayedExplorerStart.bat" -SET "SCRIPT_PATH=%STEAM_FOLDER%\%SCRIPT_NAME%" -SET "EXPLORER_PATH=C:\Windows\explorer.exe" -SET "VBS_NAME=RunBatchSilently.vbs" -SET "VBS_PATH=%STEAM_FOLDER%\%VBS_NAME%" -SET "ADMIN_VBS_NAME=LaunchSteamAsAdmin.vbs" -SET "ADMIN_VBS_PATH=%STEAM_FOLDER%\%ADMIN_VBS_NAME%" -SET "STEAM_PATH=C:\Program Files (x86)\Steam\Steam.exe -bigpicture -nobootstrapupdate -skipinitialbootstrap -skipverifyfiles" -SET "XML_NAME=DelayedExplorerStartTask.xml" -SET "XML_PATH=%STEAM_FOLDER%\DelayedExplorerStartTask.xml" - -echo Reverting changes and setting default shell back to Explorer - -:: Reset the default shell to Explorer -SET "EXPLORER_PATH=C:\Windows\explorer.exe" -REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "C:\Windows\explorer.exe" /f - -:: Define the default Steam folder path -SET "STEAM_FOLDER=C:\Program Files (x86)\Steam" - -:: Delete the DelayedExplorerStart.bat script and related files -IF EXIST "%SCRIPT_PATH%" DEL "%SCRIPT_PATH%" - -IF EXIST "%VBS_PATH%" DEL "%VBS_PATH%" - -IF EXIST "%XML_PATH%" DEL "%XML_PATH%" - -:: Delete the scheduled task -schtasks /delete /tn "RunDelayedExplorerStart" /f - -:: Enable the boot UI -bcdedit.exe -set {globalsettings} bootuxdisabled off - -echo Reversion complete. Default settings restored. - -pause