Month: January 2011

Accessing Web Services

Did you know PowerShell can access public and private Web services? The piece of code below will connect to a global weather service providing...

read more

Get All Logged On Users

In a previous tip, you learned how to determine who the user is logged onto the physical machine. However, this will not discover logged-on terminal...

read more

Comparing Hotfixes

If you want to check hotfixes, you should compare installed hotfixes on a master image with some other machine. Go ahead and use Compare-Object and...

read more

Checking Loaded Formats

PowerShell Snapins and Modules can add format files that describe how Powershell should auto-format object types. Use this line to check which...

read more

Checking -STA Mode

PowerShell needs to run in STA mode to display Windows Presentation Foundation (WPF) windows. ISE runs in STA mode by default whereas the console...

read more

Cleaning Transcript

When you run Start-Transcript, PowerShell will document all console input and output in a file. To remove all output and create a file with your...

read more

Get Logged On User

You can use this code to find out which user is locally logged on a machine: $computername = 'SomeMachine-or-IP'Get-WmiObject...

read more

Formatting a Drive

In Windows Vista and higher, there is a new WMI class called Win32_Volume that you can use to format drives. However, you should be careful when...

read more