Warwick_Tech Posted November 2, 2017 Posted November 2, 2017 So it seems 1709 has an issue with installing .Netframework 3.5, both from windows update via commandline and control panel - I have yet to try from SOURCES but as I use .WIM files exclusively I don't always have access to these. My usual line; dism /online /enable-feature /featurename:netfx3 /all does nada, returning 0x800f081f Anyone else experiencing issues with this on 1709?
mtillbrook Posted November 2, 2017 Posted November 2, 2017 I'm finding it can be a bit hit and miss doing the upgrade. I've had a few laptops that it's run smoothly (although its not fast!) and some that bomb out every time and have to roll back. For those ones I'm just carrying out a fresh install from the ISO but obviously this is a bit time consuming if they have a lot of apps installed etc!
Warwick_Tech Posted November 2, 2017 Author Posted November 2, 2017 I've been told uninstalling .Net 3.5 then running the upgrade, then re-installing fixes some bombing issues - but again leads to not being able to install 3.5.....
alfatec Posted November 3, 2017 Posted November 3, 2017 This is the line I use from the 1709 DVD. dism.exe /online /enable-feature /ALL /featurename:NetFX3 /Source:d:\sources\sxs /LimitAccess Have not has any issues.
edubri Posted November 3, 2017 Posted November 3, 2017 This is the line I use from the 1709 DVD. dism.exe /online /enable-feature /ALL /featurename:NetFX3 /Source:d:\sources\sxs /LimitAccess Have not has any issues. This is exactl;y what i have used also with 1709 and its worked fine
palarran Posted December 8, 2017 Posted December 8, 2017 Hello guys, I'm new in the forum... Anyone know how I can solve this error? The phrase in italian says "Operation was completed but the functionality NetFx3 was not enabled" Thank you!!
snagrat Posted December 8, 2017 Posted December 8, 2017 Hello guys, I'm new in the forum... Anyone know how I can solve this error? The phrase in italian says "Operation was completed but the functionality NetFx3 was not enabled" [ATTACH=CONFIG]46652[/ATTACH] Thank you!! Add the /LimitAccess switch to your command line
palarran Posted December 9, 2017 Posted December 9, 2017 Add the /LimitAccess switch to your command line Already tried... Same result..
deathatog Posted December 14, 2017 Posted December 14, 2017 (edited) If you are using the wim you likely got from a mounted source somewhere if you look at that location there should be a sources\sxs in it are cab files for this feature copy to folder and call the command with the sources parameter and point to the location you have the cab files. For me this needs to be in a different spot each time I cannot foresee so I made a batch put the files in the same location as batch and this was the contents of batch DISM /Online /Enable-Feature /FeatureName:NetFx3 /Source:%~dp0 /All You could also use the offline option to apply it to the wim ahead of time. Edited December 14, 2017 by deathatog
palarran Posted December 16, 2017 Posted December 16, 2017 If you are using the wim you likely got from a mounted source somewhere if you look at that location there should be a sources\sxs in it are cab files for this feature copy to folder and call the command with the sources parameter and point to the location you have the cab files. For me this needs to be in a different spot each time I cannot foresee so I made a batch put the files in the same location as batch and this was the contents of batch DISM /Online /Enable-Feature /FeatureName:NetFx3 /Source:%~dp0 /All You could also use the offline option to apply it to the wim ahead of time. Thank you for trying helping me... Unfortunately always the f***ing same s**t... This is a new PC, Windows is installed only by 2 weeks.... Maybe it's better if I think about a formatting...
snagrat Posted December 16, 2017 Posted December 16, 2017 You should t specify the actual file in the source, just the folder it in located in
Arthur Posted December 16, 2017 Posted December 16, 2017 @palarran. Try this PowerShell command as an alternative to DISM... Add-WindowsPackage -Online -PackagePath "$env:USERPROFILE\Desktop\microsoft-windows-netfx3-ondemand-package.cab" You will need to run it from an elevated PowerShell console or ISE. Also, could you post a screenshot of the output from the following PowerShell command... Get-WindowsOptionalFeature -Online -FeatureName 'NetFx3'
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now