Page 1 of 1

[SOLVED] dotnetfx4.7 not working

Published: January 9, 2018 - 2:32 PM
by Killian
Hello,

I'm trying to install the "dotnetfx4.7" package. It installs perfectly (according to the console), but on my remote machine, while there are no errors, the framework isn't installed in my programs.

Thank you.

Have a good day.

Re: dotnetfx4.7 not working

Published: January 12, 2018 - 11:34 AM
by agauvrit
Good morning,

DotNetFX 4.7 is no longer a redistributable like previous versions but a KB article; that's why it doesn't appear in "Add/Remove Programs" (appwiz.cpl)

To view the installed version:

Code: Select all

Get-ChildItem "HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\" | Get-ItemPropertyValue -Name Release | ForEach-Object { $_ -ge 394802 } 
https://docs.microsoft.com/en-us/dotnet ... alled#ps_a