Skip to content

Commit 11f13f5

Browse files
feat: add silent install of netfx3.5 for w11 & desktop runtime
1 parent 0e824b7 commit 11f13f5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

softwareupdaterXL.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ TITLE SW-Updater-Script
77
SET X86-UNINSTALL-REG="HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall"
88
SET X64-UNINSTALL-REG="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
99

10+
:install-net-framework-3.5-for-windows-11
11+
(for %%a IN ("DotNet35Setup*.exe") DO echo %%a && "%%a" /install /quiet /norestart && del %%a )
12+
13+
:install-net-windowsdesktop-runtime
14+
(for %%a IN ("windowsdesktop-runtime*.exe") DO echo %%a && "%%a" /install /quiet /norestart && del %%a )
15+
1016
:install-java-8
1117
for %%a IN (jre-8u*-windows-i586.exe) DO (
1218
echo %%a

0 commit comments

Comments
 (0)