zeldor.biz

Linux, programming and more

Copyright © 2025
Log in

Windows powershell

September 12, 2010 by Igor Drobot Leave a Comment


The Windows PowerShell is a free and very useful new task-based command line shell and scripting language for system administration which provides automation for Windows – desktops and servers.

Windows PowerShell makes administrators more productive.

Get Bios Information:

1
Get-WmiObject -class Win32_BIOS

Get-WmiObject -class Win32_BIOS

Get CPU Information:

1
Get-WmiObject -class Win32_Processor

Get-WmiObject -class Win32_Processor

Get mainboard Information:

1
Get-WmiObject -class Win32_Baseboard

Get-WmiObject -class Win32_Baseboard

Get OS Version:

1
Get-WmiObject -class Win32_OperatingSystem

Get-WmiObject -class Win32_OperatingSystem

Get running processes:

1
Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Filed Under: Windows Tagged With: CMD, Powershell, Windows, Windows 7

Yeaaah Cookie! We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok