Selecting Property order

If you run Get-WmiObject -Class Win32_ComputerSystem you get a few properties displayed Domain : WORKGROUP Manufacturer : Hewlett-Packard Model : HP G60 Notebook...
PowerShell workflows

Just as remoting was viewed as the biggest gain in PowerShell v2 it looks like PowerShell workflows will be one of the biggest features on PowerShell v3.
Some examples and explanation are available from
Recordings, Slides and Demo scripts

Here are the recordings, slides and demo scripts from last weeks two Live Meetings. Introduction to WMI
WMI LIKEs Wildcards

You may hear or read that WMI can’t accept wildcards. WRONG WMI accepts wildcards but not the ones you might expect. Consider Get-Process p* This gets all the process that begin with the letter p To do something similar with WMI we need to use the –Filter parameter. We can get a...
International WMI week

As far as I am concerned this is International WMI week. I am delivering a Live Meeting session to the Corpus Christi (Texas) PowerShell group on Tuesday – An Introduction to WMI & PowerShell then on Thursday I am delivering a session to the UK PowerShell group
Happy Birthday PowerShell

With all the things happening in the last month – including the release of PowerShell v3 CTP 2 - one thing that seems to have been missed is that PowerShell is 5 years old!
Yes – its just over 5 years since the release of PowerShell v1 was announced in Barcelona at the IT Forum
WMI, WSMAN, CIM and Authentication pt II

Last time we saw that the WMI cmdlets have an Authentication parameter that uses DCOM authentication. It is possible to ignore this Authentication need if the WSMAN or CIM (PS v3 CTP 2) cmdlets are used. If you look at the WSMAN cmdlets then the following cmdlets have an Authentication parameter...
WMI, WSMAN, CIM and Authentication

Authentication parameters in WMI, WSMAN and the new CIM cmdlets can be confusing.
The PowerShell WMI cmdlets have an Authentication parameter that uses DCOM authentication. Using the Authentication parameter with the WMI cmdlets was explained here
Backing up the WMI repository

The WMI repository is a collection of files. It can be easily backed up
function backup-wmirepository { param0 Comments
RSS Feed
Email a friend
Testing the WMI repository

Occasionally the WMI database becomes corrupt. Strangely I have seen this happening more often recently because of the creation of virtual machines from templates – if the template is corrupt so will be the virtual machines. With Windows Vista and above we can use the winmgmt utility to test...