When you are running a Windows server and you need to find out the specification of your serversย then this tutorial will helps you to achieve with the help of PowerShell script.
Step 1#: Open PowerShell with secific privileges.
Step 2#: Execute below script to get the specifications of the Servers
Get-wmiobject win32_computersystem
Get-WmiObject win32_processor
Explanation :
Get-wmiobject : Gets instances of WMI classes or information about the available classes.
win32_computersystem: The Win32_ComputerSystem WMI class represents a computer system running Windows.
win32_processor : Its WMI class represents a device that can interpret a sequence of instructions on a computer running on a Windows operating system.
OUTPUT:
What do you think?
I hope you have an idea ofย How to Find Out Specifications of Server Using PowerShell. I would like to have feedback from my posts readers. Your valuable feedback, question, or comments about this article are always welcome.
Leave A Comment