3 Commits
v8 ... v9

Author SHA1 Message Date
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
3 changed files with 21 additions and 2 deletions

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

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 @@