how to find the version of IIS via Powershell .
the best and easy way is to look in the registry ..not by opening it ,instead open
Powershell and type –
1 |
get-itemproperty HKLM:\SOFTWARE\Microsoft\InetStp\ |
you can filter the result easily with select –
1 |
get-itemproperty HKLM:\SOFTWARE\Microsoft\InetStp\ | select setupstring,versionstring |
(Visited 603 times, 1 visits today)