We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e824b7 commit 11f13f5Copy full SHA for 11f13f5
softwareupdaterXL.bat
@@ -7,6 +7,12 @@ TITLE SW-Updater-Script
7
SET X86-UNINSTALL-REG="HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall"
8
SET X64-UNINSTALL-REG="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
9
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
16
:install-java-8
17
for %%a IN (jre-8u*-windows-i586.exe) DO (
18
echo %%a
0 commit comments