A
A
Arthur Samurai2021-12-01 18:45:48
Python
Arthur Samurai, 2021-12-01 18:45:48

How to get information about the OS in the local network?

Network, 100 machines. How to scan them and extract the bit depth and version of Windows, the amount of RAM, the speed of data transfer over the network. What tools or libraries can be used?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
P
pfg21, 2021-12-01
@pfg21

heh, that's exactly what they told you.
8 Best IP Scanner Tools for Network Management and further explore.

V
Vladimir Korotenko, 2021-12-02
@firedragon

Get-CimInstance -ClassName Win32_ComputerSystem
getting system data
More
info https://docs.microsoft.com/en-us/powershell/script...
Listing
PowerShell computers

. {
    $Domainmachines = (([adsi]"WinNT://$((Get-WMIObject Win32_ComputerSystem).Domain)").Children) | Where {$_.schemaclassname -eq 'computer'} 
    Foreach( $machine in $Domainmachines) {
        Select-Object -ExpandProperty Name -InputObject $machine 

    } 
} 2>$null

P
paran0id, 2021-12-01
@paran0id

If you are a network administrator and the task is inventory - look towards GLPI or some other software for inventory.

C
CityCat4, 2021-12-02
@CityCat4

10-strike.
Russian.
Paid.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question