Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # CHECK .NET FRAMEWORK VERSION INSTALLED
  2. $Lookup = ConvertFrom-Csv 'Version|Release
  3. 4.5|378389
  4. 4.5.1|378675
  5. 4.5.1|378758
  6. 4.5.2|379893
  7. 4.6|393295
  8. 4.6|393297
  9. 4.6.1|394254
  10. 4.6.1|394271
  11. 4.6.2|394802
  12. 4.6.2|394806
  13. 4.7|460798
  14. 4.7|460805
  15. 4.7.1|461308
  16. 4.7.1|461310
  17. 4.7.2|461814
  18. 4.8|528040
  19. 4.8|528049
  20. ' -Delimiter "|"
  21. Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' |
  22. Get-ItemProperty -name Release -EA 0 |
  23. Select Release, @{
  24. name = "Product"
  25. expression = {
  26. $Lookup | ? Release -eq $_.Release | % Version
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement