cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
TCSadmin
Engaged Sweeper
Hello,
I am looking for scanning all windows 2000, 2003 and 2008 servers for details on what all software and tools are installed on these servers. Can I use lansweep for that? If yes, How can run the report and is that covered in free version.
Thanks,
1 ACCEPTED SOLUTION
Daniel_B
Lansweeper Alumni
Hi, I moved your post to a new topic as it wasn't directly related to the topic you posted in.

Lansweeper scans software installations on all Windows computers. You can use built-in reports such as "Software: List of software by computer" to list all installations together with the name of computers they are installed on.

If you require more specific reports, you can create a custom reports which filters only servers or even servers with a specific operating system version, but creating custom reports won't be possible in the freeware version. The following example report lists software installations on Windows server 2000, 2003, 2003 R2, 2008 and 2008 R2.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Lastseen,
tsysOS.OSname,
tsysOS.Image As icon,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion,
tblSoftware.Installdate
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tsysOS.OSname In ('Win 2003', 'Win 2003 R2', 'Win 2000 S', 'Win 2008',
'Win 2008 R2') And tblAssetCustom.State = 1
Order By tblAssets.AssetName,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion

View solution in original post

1 REPLY 1
Daniel_B
Lansweeper Alumni
Hi, I moved your post to a new topic as it wasn't directly related to the topic you posted in.

Lansweeper scans software installations on all Windows computers. You can use built-in reports such as "Software: List of software by computer" to list all installations together with the name of computers they are installed on.

If you require more specific reports, you can create a custom reports which filters only servers or even servers with a specific operating system version, but creating custom reports won't be possible in the freeware version. The following example report lists software installations on Windows server 2000, 2003, 2003 R2, 2008 and 2008 R2.

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Lastseen,
tsysOS.OSname,
tsysOS.Image As icon,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion,
tblSoftware.Installdate
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tsysOS.OSname In ('Win 2003', 'Win 2003 R2', 'Win 2000 S', 'Win 2008',
'Win 2008 R2') And tblAssetCustom.State = 1
Order By tblAssets.AssetName,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion