.
This commit is contained in:
parent
c3f81c25be
commit
3473e79b98
@ -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://www.sordum.org/files/downloads.php?st-windows-update-blocker wub.zip
|
||||||
https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
|
https://farmanager.com/files/Far30b5700.x64.20201112.msi far-setup.msi
|
||||||
https://golang.org/dl/go1.16.windows-amd64.msi go-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
|
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://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
|
https://github.com/microsoft/terminal/releases/download/v1.5.10411.0/Microsoft.WindowsTerminal_1.5.10411.0_8wekyb3d8bbwe.msixbundle windowsterminal-setup.msixbundle
|
||||||
|
|
@ -96,8 +96,6 @@ echo disable cortana button on the taskbar ...
|
|||||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
|
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
|
||||||
/v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul
|
/v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul
|
||||||
|
|
||||||
GOTO EXPLORER
|
|
||||||
|
|
||||||
echo disable autotray for the taskbar ...
|
echo disable autotray for the taskbar ...
|
||||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
|
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
|
||||||
/v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul
|
/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
|
set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml
|
||||||
"%ProgramFiles%\Open-Shell\StartMenu.exe" -xml %CONFIG%
|
"%ProgramFiles%\Open-Shell\StartMenu.exe" -xml %CONFIG%
|
||||||
|
|
||||||
:EXPLORER
|
|
||||||
echo restarting explorer ...
|
echo restarting explorer ...
|
||||||
taskkill /f /im explorer.exe 1>nul 2>nul
|
taskkill /f /im explorer.exe 1>nul 2>nul
|
||||||
start explorer.exe
|
start explorer.exe
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
set MNT=c:\TEMP\WIM
|
set MNT=c:\TEMP\WIM
|
||||||
|
|
||||||
|
rem the CHECKFILE is a file that will be monitored against deletion ...
|
||||||
set CHECKFILE=%MNT%\Windows\SysWOW64\mf.dll
|
set CHECKFILE=%MNT%\Windows\SysWOW64\mf.dll
|
||||||
|
|
||||||
echo exporting PACKAGE list BEFORE doing any changes ...
|
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
|
install_wim_tweak.exe /p %MNT% /c "%%P" /r /n
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
|
rem we will exit here in case the checkfile was deleted by a package removal ...
|
||||||
if NOT EXIST %CHECKFILE% (
|
if NOT EXIST %CHECKFILE% (
|
||||||
echo ERROR: File %CHECKFILE% was deleted
|
echo ERROR: File %CHECKFILE% was deleted
|
||||||
exit /b
|
exit /b
|
||||||
@ -204,3 +207,4 @@ move /Y Packages.txt Packages-AFTER.txt
|
|||||||
|
|
||||||
rem showing packages ...
|
rem showing packages ...
|
||||||
dir Packages*.txt
|
dir Packages*.txt
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user