Skip to main content

unable to install .net framework 3.5 in windows 8-64 bit error code 0x800f0906

If you are using WSUS in your organization you will not able to enable .net frame work 3.5



Solution.


  • Prepare the Mount image of win8 using PowerISO or UltraISO image

  • Open command prompt with run as administrator and type command    Dism /online /enable-feature /featurename:NetFx3 /All /Source:G:\sources\sxs /LimitAccess

                  Change your Drive letter accordingely  (In My case it was G Drive)




Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...