Files
SwarmUI/make-shortcut.bat
2024-06-21 15:55:44 -07:00

8 lines
265 B
Batchfile

@echo off
set SHORTCUTPATH="%userprofile%\Desktop\SwarmUI.url"
echo [InternetShortcut] >> "%SHORTCUTPATH%"
echo URL="%CD%\launch-windows.bat" >> "%SHORTCUTPATH%"
echo IconFile="%CD%\src\wwwroot\favicon.ico" >> "%SHORTCUTPATH%"
echo IconIndex=0 >> "%SHORTCUTPATH%"