Whenever you try to install any software which requires .NET Framework 3.5 features for installation purpose, it will prompt you to install first the features. You would be aware that .NET Framework 3.5 comprises the features of .NET Framework 2.0 and 3.0.
You need not to download setup to install .NET Framework 3.5 features. You need to simply have Windows 8 installer CD and should know two commands.
Firstly, insert the CD and type the following command in the command prompt.
To know more follow the given link:
http://msdn.microsoft.com/en-us/library/windows/desktop/hh848079%28v=vs.85%29.aspx
You need not to download setup to install .NET Framework 3.5 features. You need to simply have Windows 8 installer CD and should know two commands.
Firstly, insert the CD and type the following command in the command prompt.
xcopy e:\sources\sxs\*.* c:\dotnet35 /s
This command will copy the files from CD to your entered destination (here, c:\dotnet35).
Secondly, type given below command with administrator privileges.
Dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\dotnet35 /LimitAccess
The above snapshot demonstrates how the files are copied from CD to your system by executing the first command and how the features are enabled by executing second command with administrator privileges.To know more follow the given link:
http://msdn.microsoft.com/en-us/library/windows/desktop/hh848079%28v=vs.85%29.aspx
No comments:
Post a Comment