From 8802a1c890d336cb9b7022f5c5ce0f970628dcc9 Mon Sep 17 00:00:00 2001 From: JackMyth Date: Wed, 6 Oct 2021 12:17:00 +0800 Subject: [PATCH] Fix the issue that failed to open explorer --- Install.cmd | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Install.cmd b/Install.cmd index 741e365..5b6a27c 100644 --- a/Install.cmd +++ b/Install.cmd @@ -21,9 +21,10 @@ if "%Override%"=="Y" goto Apply exit :Apply -del /f "%SteamPath%\skins\%CurDirName%" +del /f /q "%SteamPath%\skins\%CurDirName%" mkdir "%SteamPath%\skins" -xcopy /e "..\%CurDirName%\" "%SteamPath%\skins\%CurDirName%\" +xcopy /e /y "..\%CurDirName%\" "%SteamPath%\skins\%CurDirName%\" reg add HKCU\Software\Valve\Steam /v SkinV5 /t REG_SZ /d %CurDirName% /f echo Enjoy your new steam! :^) -start explorer.exe "%SteamPath%\skins\%CurDirName%" \ No newline at end of file +cd /d "%SteamPath%\skins\%CurDirName%" +start explorer.exe . \ No newline at end of file