PDQ Deploy and Windows Features
This is probably an easy one (and probably answered many times)...can I get Deploy to turn on a Windows Feature in Windows 10? If so, what are the steps?
Specifically, I need a package that will enable .Net 3.5 on some Windows 10 machines.
-
Bingo.
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /Source:C:\temp\microsoft-windows-netfx3-ondemand-package.cab
In my testing I had to use a source file. So you could use a Copy Step to copy over the microsoft-windows-netfx3-ondemand-package.cab file from your installation media's Sources/SXS folder.
Powershell step to run the code above.
Second Powershell step to cleanup the file copied previous:
Remove-Item C:\temp\microsoft-windows-netfx3-ondemand-package.cab -Force
Please sign in to leave a comment.
Comments
4 comments