diff --git a/bin/dropItem_create.bat b/bin/dropItem_create.bat index d9c37aa..dc031f4 100644 --- a/bin/dropItem_create.bat +++ b/bin/dropItem_create.bat @@ -6,11 +6,16 @@ mkdir %INSTALL_DIR% set SHORTCUT=%INSTALL_DIR%\create_cables.lnk set TARGET=%PROJECT_BIN%\getexdraw.bat -set ICON=%PROJECT_DOC%\img\Icons\Icon_Gemini2.ico +set ICON1=%PROJECT_DOC%\img\Icons\Icon_getex.ico +set ICON2=%PROJECT_DOC%\img\Icons\Icon_portal.ico REM ersetze die Zeile mit setenv.bat durch die mit dem neuen Pfad powershell -Command "(Get-Content getexdraw.bat) -replace '^.*setenv.bat$', 'call %PROJECT_BIN%\setenv.bat' | Set-Content getexdraw.bat" -REM Icon anlegen -powershell -Command "$s=(New-Object -COM WScript.Shell).CreateShortcut('%SHORTCUT%');$s.TargetPath='%TARGET%';$s.IconLocation='%ICON%';$s.Save()" +REM Icon1 anlegen +powershell -Command "$s=(New-Object -COM WScript.Shell).CreateShortcut('%SHORTCUT%');$s.TargetPath='%TARGET%';$s.IconLocation='%ICON1%';$s.Save()" +explorer.exe %INSTALL_DIR% + +REM Icon2 anlegen +powershell -Command "$s=(New-Object -COM WScript.Shell).CreateShortcut('%SHORTCUT%');$s.TargetPath='%TARGET%';$s.IconLocation='%ICON2%';$s.Save()" explorer.exe %INSTALL_DIR% diff --git a/doc/img/Icons/Icon_getex.ico b/doc/img/Icons/Icon_getex.ico new file mode 100644 index 0000000..b8d750b Binary files /dev/null and b/doc/img/Icons/Icon_getex.ico differ diff --git a/doc/img/Icons/Icon_getex.png b/doc/img/Icons/Icon_getex.png new file mode 100644 index 0000000..5d4a3b5 Binary files /dev/null and b/doc/img/Icons/Icon_getex.png differ diff --git a/doc/img/Icons/Icon_portal.ico b/doc/img/Icons/Icon_portal.ico new file mode 100644 index 0000000..ef5dcbe Binary files /dev/null and b/doc/img/Icons/Icon_portal.ico differ diff --git a/doc/img/Icons/Icon_portal.png b/doc/img/Icons/Icon_portal.png new file mode 100644 index 0000000..15586b1 Binary files /dev/null and b/doc/img/Icons/Icon_portal.png differ