Link to home
Start Free TrialLog in
Avatar of Andrew N. Kowtalo
Andrew N. Kowtalo

asked on

Scan network for Windows 7 units

Are there any known tools like advanced IP scanner I can use to scan the network and report OS?  I want to do a workstation survey and find out which machines currently on the network I am connected to are running Windows 7.
Avatar of MLV CM
MLV CM
Flag of United States of America image

Do you have a managed antivirus solution?  If so it will likely provide a report with the OS version of all protected PCs.
Avatar of aravind anche
I would use powershell to get the list of computers with windows 7
Their are many such tools most popular are
angry ip scanner
Free ip scanner
Nectar
Lansweeper ip scanner
Something like
Get-ADComputer -Filter {OperatingSystem -like "*7*"}
this should help you with all details
$win7 = Get-ADComputer -Filter {OperatingSystem -like "*7*"} `
    -Properties Name, DNSHostName, OperatingSystem, `
        OperatingSystemServicePack, OperatingSystemVersion, PasswordLastSet, `
        whenCreated, whenChanged, LastLogonTimestamp, nTSecurityDescriptor, `
        DistinguishedName |
    Where-Object {$_.whenChanged -gt $((Get-Date).AddDays(-90))} |
    Select-Object Name, DNSHostName, OperatingSystem, `
        OperatingSystemServicePack, OperatingSystemVersion, PasswordLastSet, `
        whenCreated, whenChanged, `
        @{name='LastLogonTimestampDT';`
          Expression={[datetime]::FromFileTimeUTC($_.LastLogonTimestamp)}}, `
        @{name='Owner';`
          Expression={$_.nTSecurityDescriptor.Owner}}, `
        DistinguishedName

        $win7 |Export-Csv "C:\machines.csv"

Open in new window



https://blogs.technet.microsoft.com/ashleymcglone/2014/01/29/use-powershell-to-find-windows-xp-computers-still-alive-in-your-active-directory-domain/


Also check this out
https://nmap.org/book/man-os-detection.html
Spiceworks scans your network and puts in a specific groups such as Operating system types, CPU, etc.

It's been open source for a long time as well.


Check it out:

https://www.spiceworks.com/
ASKER CERTIFIED SOLUTION
Avatar of Andrew N. Kowtalo
Andrew N. Kowtalo

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