Skip to content

Instantly share code, notes, and snippets.

@mouadcherkaoui
Created August 26, 2021 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mouadcherkaoui/63a932ec5aa7febc8530c2e69f14c6ce to your computer and use it in GitHub Desktop.
Save mouadcherkaoui/63a932ec5aa7febc8530c2e69f14c6ce to your computer and use it in GitHub Desktop.
@echo off
Title .NET Framework 3.5 Offline Installer
for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
if defined setupdrv (
echo Found drive %setupdrv%
echo Installing .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
) else (
echo No installation media found!
echo Insert DVD or USB flash drive and run this file once again.
echo.
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment