To install .NET Framework 3.5
Sent by Copilot:
To install .NET Framework 3.5 using the Registry Editor (regedit), you can follow these steps:
Open Registry Editor:
- Press
Win + R
, typeregedit
, and press Enter.
- Press
Navigate to the Windows Update Settings:
- Go to
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU
.
- Go to
Modify the UseWUServer Value:
- Find the
UseWUServer
entry. Double-click it and change its value from1
to0
.
- Find the
Restart Your Computer:
- This change will take effect after a reboot.
Install .NET Framework 3.5:
- After restarting, you can install .NET Framework 3.5 through the Control Panel or using the following command in an elevated Command Prompt:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
- After restarting, you can install .NET Framework 3.5 through the Control Panel or using the following command in an elevated Command Prompt:
Revert the Registry Change:
- After the installation, go back to the Registry Editor and change the
UseWUServer
value back to1
.
- After the installation, go back to the Registry Editor and change the
Restart Your Computer Again:
- Restart your computer to apply the changes.
This process should help you install .NET Framework 3.5 on your system123.
If you encounter any issues, feel free to ask for more help!
or use the below script
Dism.exe /online /enable-feature /featurename:NETFX3 /All /Source:C:\sources\sxs /LimitAccess
Comments
Post a Comment