This commit is contained in:
Michael H.G. Schmidt 2021-01-29 11:42:19 +01:00
parent cbf9f03766
commit 467da3140a
8 changed files with 20 additions and 2 deletions

View File

@ -83,6 +83,9 @@ echo.
call install-sublime.cmd
echo.
call install-purebasic.cmd
echo.
rem fuck you microsoft ...
call install-openshell.cmd
echo.

View File

@ -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",

Binary file not shown.

BIN
scripts/icons/PureBasic.lnk Normal file

Binary file not shown.

BIN
scripts/icons/Terminal.lnk Normal file

Binary file not shown.

BIN
scripts/icons/VNC.lnk Normal file

Binary file not shown.

View File

@ -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 #######

View File

@ -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 #######