About 1,030,000 results
Open links in new tab
  1. Get SystemInfo From Remote Computer PowerShell: A Simple …

    To retrieve system information from a remote computer using PowerShell, you can utilize the `Get-ComputerInfo` cmdlet in a remote session. Here's a code snippet to accomplish that: …

  2. Get-ComputerInfo (Microsoft.PowerShell.Management) - PowerShell

    This cmdlet is only available on the Windows platform. The Get-ComputerInfo cmdlet gets a consolidated object of system and operating system properties. This cmdlet was introduced in …

  3. Retrieving system information from a remote system(s) using powershell

    Aug 26, 2022 · $computerSystem = get-wmiobject Win32_ComputerSystem -Computer $Computer. $computerBIOS = get-wmiobject Win32_BIOS -Computer $Computer. …

  4. Collecting information about computers - PowerShell

    Dec 9, 2022 · To view the status of all services on a specific computer, you can locally use the Get-Service cmdlet. For remote systems, you can use the Win32_Service WMI class.

  5. Get remote computer system and hardware information

    Aug 22, 2014 · Uses PowerShell with the WMI cmdlets to report the following details of a list of devices on your network. Useful to have if you can’t get to your SpiceWorks system! Make …

  6. How to Get Computer Information Using PowerShell?

    Jan 20, 2025 · PowerShell allows you to collect information from remote computers in your network using the Invoke-Command cmdlet. This is particularly useful for system …

  7. Remote PC Get-ComputerInfo - Spiceworks Community

    May 26, 2021 · ‘get-computerinfo’ is a cmdlet that retrieves LOCAL info (just like running e.g. ‘ipconfig’ returns only LOCAL ip info) to get that to retrieve info from a remote machine you …

  8. Get-ComputerInfo – Get Computer Multiple Properties

    Feb 3, 2023 · The command to get computer information from a local computer is the Get-ComputerInfo cmdlet. This command retrieves multiple properties of computer information like …

  9. How To Get Computer System Information Using PowerShell

    Oct 31, 2018 · To get Computer System Information using PowerShell we can use either WMI or CIM classes, Win32_ComputerSystem or CIM_ComputerSystem respectively. If this is what …

  10. PowerShell to get system information from remote computers

    PowerShell script to read a list of computer names from a CSV file and remotely get their system information

Refresh