Articles

PowerShell articles, tutorials, and guides from community experts.

Richard Siddaway

Network Adapters"“Disable/Enable

Last time we saw the Get-NetAdapter cmdlet from the NetAdapter module PS> Get-NetAdapter | ft Name, InterfaceDescription, Status -a Name InterfaceDescription Status —- ——————– —— Ethernet NVIDIA nForce 10/100/1000 Mbps Ethernet Up WiFi Qualcomm Atheros AR5007 802.11b/g WiFi Adapter Up If you look …

Don Jones
Scripting Games

Announcing Winter Scripting Camp Winners

I know, this took forever. Mea culpa. I’ve been working my shell off, and finally got around to pulling the info. Beginner Track Wouter Beens (4.667) Laurel Raven (4.5) Chris Davis (4.5) Advanced Track Alexander Kuzin (4.5) Lido Paglia (4.5) (anonymous) (4) Those are the average scores from …

Don Jones
Tools

WMI Explorer

This is a PowerShell-based WMI Explorer tool created by Marc van Orsouw (aka //\O//). His Web site has been down for ages, but Thomas Lee was helpful enough to post a copy of this, and we’re hosting it here as a backup against further unavailability. Download WMI Explorer

Richard Siddaway

Network adapters

The WMI classes Win32_NetworkAdapter and Win32_NetworkAdapterConfiguration have seen a lot of use over the years. They can be a bit fiddly to use which is why the NetAdapter module in Windows 8/2012 is a so welcome. Lets start by looking at basic information gathering PS> Get-NetAdapter | ft -a …

Richard Siddaway

Windows 8 Kindle app

Amazon have released an update for the Windows 8 Kindle app that appears to have resolved the corrupted display issue that occurred after every few pages of reading. I would recommend updating the app immediately. The app now seems to be usable.

Richard Siddaway

Filter or LDAP filter

Many of the Microsoft AD cmdlets have a ““Filter and an ““LDAPFilter parameter. So what”™s the difference? PS> Get-Help Get-ADUser -Parameter *Filter* -Filter Specifies a query string that retrieves Active Directory objects. This string uses the PowerShell Expression Language …