problem installing .NET 3.5 on win8.1 pro

Discussion in 'Windows 8' started by Cornmeister, Aug 29, 2013.

  1. Bluescreen

    Bluescreen MDL Senior Member

    Jul 16, 2009
    344
    51
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. And1.G

    And1.G MDL Novice

    Dec 14, 2007
    8
    0
    0
    What am I supposed to do when I have integrated my language pack to the setup? In the Control Panel, de-de was the onlz one visible. I tried to add en-us and removed de-de but netfx3 still won't install. Neither from the original setup image or from mz modified one.
     
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Did you try to enable in original WIM?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. And1.G

    And1.G MDL Novice

    Dec 14, 2007
    8
    0
    0
    #64 And1.G, Sep 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Could you explain that? Sorry, I don't understand what you mean.


    Anyways, those are the two commands I ran

    Original image en-US
    Code:
    dism /online /enable-feature /featurename:netfx3 /all /source:N:\sources\sxs /limitaccess
    Modified one with de-DE integrated
    Code:
    dism /online /enable-feature /featurename:netfx3 /all /source:D:\win81setup\win81_de-de\sources\sxs /limitaccess
    Both gave this output
    Code:
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.16384
    
    Image Version: 6.3.9600.16384
    
    Enabling feature(s)
    [===========================65.8%======                    ]
    
    Error: 0x800f081f
    
    The source files could not be found.
    Use the "Source" option to specify the location of the files that are required t
    o restore the feature. For more information on specifying a source location, see
     hxxp://go.microsoft.com/fwlink/?LinkId=243077.
    
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log


    Edit
    OK since this is a new installation, I think the easiest fix will be a clean reinstall... So I install from the original RTM CP ISO, the first thing I do is installing netfx3 and then I can safely add my desired language pack, am I right?
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    #65 s1ave77, Sep 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Enabled it myself in the mounted WIM. Afterwards you can add the langpack.

    EDIT: You´ll have to this on the Preview build or later in order to use the new adk.


    Mount WIM:
    Code:
    Dism /mount-wim /wimfile:"c:\win8\wim\install.wim" /index:1 /mountdir:"c:win8\mount"    

    Enable .NET:

    Code:
    dism /Image:"c:win8\mount" /Enable-Feature /All /FeatureName:NetFX3 /Source:X:\sources\sxs /LimitAccess
    Add feature, i.e. langpack:
    Code:
    Dism /image:"c:win8\mount" /Add-Package /PackagePath:"c:\win8\lp\lp.cab"    

    Unmount WIM:

    Code:
    Dism /unmount-wim /mountdir:"c:win8\mount" /commit
    NOTE: Adapt the bold pathes to your actual locations :D.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. And1.G

    And1.G MDL Novice

    Dec 14, 2007
    8
    0
    0
    Oh, thanks for the information. I followed a guide from the forums to integrate the lp and read this for the first time... Maybe one should add a note that this will cause problems.
    But if I now perform a fresh install from original image, I will be able to install netfx3 and afterwards simply install the language pack from whithin the control panel?
     
  7. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Worked in my test likewise. Noticed myself some time back that .NET is the first thing to add, this is unfortunately mandatory.


    Even some added updates before .NET could make it impossible to install.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...