8 lines
265 B
Batchfile
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%"
|