Link to home
Start Free TrialLog in
Avatar of Carletto
CarlettoFlag for Italy

asked on

iis inventory software

Dear All,
We are going to perform an Active Directory domain migration using ADMT and we are inventorying our network infrastructure with several commercial tools like ADManager and LanSweeper .
We also need to inventory several web sites on different web servers running IIS7. The tools I previously mentioned don’t provide this option, do you know a software that collects IIS configuration and information like Url, asp version, permissions, odbc connections...

Thank you
Carlettus
Avatar of Systech Admin
Systech Admin
Flag of India image

Use below powershell code.

$servers = (Get-Content servers.txt)
foreach($vm in $servers){
$iis = get-wmiobject Win32_Service -ComputerName $vm -Filter "name='IISADMIN'"
if($iis.State -eq "Running")
{Write-Host "IIS is running on $vm"}
else
{Write-Host "IIS is not running on $vm"}
}
Avatar of Carletto

ASKER

Thank you for your message,
honestly I'm looking for a commercial software .
do you know anything ?

Thank you
CArlettus
ASKER CERTIFIED SOLUTION
Avatar of Systech Admin
Systech Admin
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Great !!!!
this is what I was looking for. In these days I tried also appcmd but this one feets my requests.
Thank you
Carlettus.
Made a test and the reporting is excellent.