diff --git a/software/basic.csv b/software/basic.csv index ccbf972..117a383 100644 --- a/software/basic.csv +++ b/software/basic.csv @@ -17,7 +17,7 @@ https://winscp.net/download/WinSCP-5.17.10-Portable.zip winscp.zip https://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi https://golang.org/dl/go1.16.windows-amd64.msi go-setup.msi -https://www.python.org/ftp/python/2.7.18/python-2.7.18.amd64.msi python-setup.msi +https://www.python.org/ftp/python/3.9.2/python-3.9.2-embed-amd64.zip python-setup.msi http://www.drivesnapshot.de/download/snapshot64.exe snapshot64.exe https://ftp.halifax.rwth-aachen.de/videolan/vlc/3.0.12/win64/vlc-3.0.12-win64.exe vlc-setup.exe https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle diff --git a/tools/logon.cmd b/tools/logon.cmd index 5caebb9..bd4c339 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -96,8 +96,6 @@ echo disable cortana button on the taskbar ... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ /v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul -GOTO EXPLORER - echo disable autotray for the taskbar ... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ /v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul @@ -115,7 +113,6 @@ rem config must be full qualified pathname (OpenShell BUG!) set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml "%ProgramFiles%\Open-Shell\StartMenu.exe" -xml %CONFIG% -:EXPLORER echo restarting explorer ... taskkill /f /im explorer.exe 1>nul 2>nul start explorer.exe diff --git a/wim/remove-packages.cmd b/wim/remove-packages.cmd index 7bf624e..9a2b46f 100644 --- a/wim/remove-packages.cmd +++ b/wim/remove-packages.cmd @@ -1,5 +1,7 @@ @echo off set MNT=c:\TEMP\WIM + +rem the CHECKFILE is a file that will be monitored against deletion ... set CHECKFILE=%MNT%\Windows\SysWOW64\mf.dll echo exporting PACKAGE list BEFORE doing any changes ... @@ -188,6 +190,7 @@ for %%P in ( install_wim_tweak.exe /p %MNT% /c "%%P" /r /n @echo off + rem we will exit here in case the checkfile was deleted by a package removal ... if NOT EXIST %CHECKFILE% ( echo ERROR: File %CHECKFILE% was deleted exit /b @@ -204,3 +207,4 @@ move /Y Packages.txt Packages-AFTER.txt rem showing packages ... dir Packages*.txt +