Files
ooga_booga/hardlink-songs-folder.bat
Arlind-dev a1af42b154
All checks were successful
CI/CD Pipeline / Full CI/CD Pipeline (push) Successful in 3m46s
Fix paths and edit hardlink skin
2025-06-06 12:53:02 +02:00

16 lines
398 B
Batchfile

@echo off
net session >nul 2>&1
if %errorLevel% neq 0 (
echo Requesting admin privileges...
powershell -Command "Start-Process cmd -ArgumentList '/c \"%~f0\"' -Verb RunAs"
exit /b
)
echo Running robocopy sync as Administrator...
echo.
robocopy "D:\osustuff\skins for arlind skinhub" "D:\Git\ooga_booga\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J
echo Robocopy sync completed.
pause