5 Commits
v8 ... v10

Author SHA1 Message Date
jazir5
9f62c88fc1 Update Disable Gamesdows V3.bat 2025-03-05 15:36:45 -08:00
jazir5
56c5b6a91e Update Enable GamesDows Playnite.bat 2025-03-05 15:27:29 -08:00
jazir5
fafd7a2010 Update Enable GamesDows Steam V3.bat 2025-02-15 15:31:18 -08:00
jazir5
1ca95e4131 Update Enable GamesDows Playnite.bat 2025-02-15 15:31:06 -08:00
jazir5
d3ee9e4289 Delete decky/Placeholder 2024-12-28 16:43:39 -08:00
4 changed files with 23 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ echo ================================
:: 1) Reset the default shell to Explorer
echo [1/5] Resetting default shell to Explorer...
REG ADD "HKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v "Shell" /t REG_SZ /d "C:\Windows\explorer.exe" /f
if ERRORLEVEL 1 (
echo [ERROR] Failed to reset the default shell.

View File

@@ -1,5 +1,16 @@
@echo off
SETLOCAL EnableExtensions
@echo off
echo Checking for administrative privileges
net session >nul 2>&1
if %errorlevel% neq 0 (
echo ====================================================
echo This script must be run with administrative privileges.
echo Please right-click on the script and select "Run as administrator."
echo ====================================================
pause
exit /b
)
echo Setting Playnite as default shell
@@ -7,7 +18,7 @@ echo Set Playnite as the default shell
SET "KEY_NAME=HKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
SET "VALUE_NAME=Shell"
SET "PLAYNITE_FOLDER=%LOCALAPPDATA%\Playnite"
SET "PLAYNITE_PATH=%LOCALAPPDATA%\Playnite\Playnite.FullscreenApp.exe
SET "PLAYNITE_PATH=%LOCALAPPDATA%\Playnite\Playnite.FullscreenApp.exe"
REG ADD "%KEY_NAME%" /v %VALUE_NAME% /t REG_SZ /d "%PLAYNITE_PATH%" /f
SET "SCRIPT_NAME=DelayedExplorerStart.bat"
SET "SCRIPT_PATH=%PLAYNITE_FOLDER%\%SCRIPT_NAME%"

View File

@@ -1,6 +1,15 @@
@echo off
SETLOCAL EnableExtensions EnableDelayedExpansion
echo Checking for administrative privileges
net session >nul 2>&1
if %errorlevel% neq 0 (
echo ====================================================
echo This script must be run with administrative privileges.
echo Please right-click on the script and select "Run as administrator."
echo ====================================================
pause
exit /b
)
echo Setting Steam Big Picture as default shell
echo Set Steam Big Picture as the default shell

View File

@@ -1 +0,0 @@