Answer the question
In order to leave comments, you need to log in
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
heh, that's exactly what they told you.
8 Best IP Scanner Tools for Network Management and further explore.
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
If you are a network administrator and the task is inventory - look towards GLPI or some other software for inventory.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question