diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 75e92d1..62a89cb 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -83,6 +83,9 @@ echo. call install-sublime.cmd echo. +call install-purebasic.cmd +echo. + rem fuck you microsoft ... call install-openshell.cmd echo. diff --git a/scripts/config/wt-settings.json b/scripts/config/wt-settings.json index e63dbb1..91c2417 100644 --- a/scripts/config/wt-settings.json +++ b/scripts/config/wt-settings.json @@ -18,7 +18,7 @@ { "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "Command Prompt", - "commandline": "cmd.exe /K c:\\scripts\\start-ssh-agent.cmd", + "commandline": "cmd.exe /K c:\\tools\\start-ssh-agent.cmd", "cursorShape": "filledBox", "startingDirectory": "%USERPROFILE%\\workspace", "colorScheme": "CMDBOX", diff --git a/scripts/icons/PowerShell.lnk b/scripts/icons/PowerShell.lnk index aef8eb7..d430363 100644 Binary files a/scripts/icons/PowerShell.lnk and b/scripts/icons/PowerShell.lnk differ diff --git a/scripts/icons/PureBasic.lnk b/scripts/icons/PureBasic.lnk new file mode 100644 index 0000000..7b4ccf7 Binary files /dev/null and b/scripts/icons/PureBasic.lnk differ diff --git a/scripts/icons/Terminal.lnk b/scripts/icons/Terminal.lnk new file mode 100644 index 0000000..c788c00 Binary files /dev/null and b/scripts/icons/Terminal.lnk differ diff --git a/scripts/icons/VNC.lnk b/scripts/icons/VNC.lnk new file mode 100644 index 0000000..3191b30 Binary files /dev/null and b/scripts/icons/VNC.lnk differ diff --git a/scripts/install-purebasic.cmd b/scripts/install-purebasic.cmd new file mode 100644 index 0000000..007a659 --- /dev/null +++ b/scripts/install-purebasic.cmd @@ -0,0 +1,15 @@ +@echo off + +set EXE=..\software\PureBasic_Windows_X64_LTS_5.73.exe + +echo ####### %0 ####### + +echo killing ssh processes... +taskkill /F /IM PureBasic.exe +taskkill /F /IM pbcompiler.exe + +echo installing PUREBASIC ... +%EXE% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS + +echo ####### %0 ####### + diff --git a/scripts/modify-path.cmd b/scripts/modify-path.cmd index faf6e2d..02c603e 100644 --- a/scripts/modify-path.cmd +++ b/scripts/modify-path.cmd @@ -4,7 +4,7 @@ echo ####### %0 ####### echo setting PATH variable (for all users) ... reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^ - /d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++" ^ + /d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++;%ProgramFiles%\PureBasic\Compilers" ^ /v PATH /t REG_EXPAND_SZ /f echo ####### %0 #######