Registration for European Summit 2014 is open
Registration for the PowerShell Summit Europe 2014 is now open. Follow the links under Events
PowerShell articles, tutorials, and guides from community experts.
Registration for the PowerShell Summit Europe 2014 is now open. Follow the links under Events
Ferdinand G. Rios gave a presentation entitled “Building PowerShell GUI Tool Solutions" During his talked Ferdinand demonstrated how to use Sapien PowerShell Studio 2014 to easily build GUI applications on top of PowerShell, A recording of this meeting has been posted to our YouTube channel
There seems to have been a bit of confusion regarding the European PowerShell Summit as the site will tell you that registration is currently unavailable. There isn’t a problem and the Summit HAS NOT sold out at this time. WE just haven’t opened registration yet. Registration will open …
The first meeting of the Omaha PowerShell User Group is filling up fast! There are only 16 available seats so make sure you get your spot! Meeting details and sign up information can be found at omahapsug.eventbrite.com
There will not be a meeting in July in Charlotte, please enjoy the 4th of July holiday. We will be back on schedule in August.
Did you know that PowerShell.org has, for more than a year now, offered a mostly-monthly TechLetter e-mail newsletter? It’s stuffed with community news, announcements (like our free webinar schedule), feature articles on PowerShell, and much more. It’s a great way to learn a little bit …
Jeff Hicks gave a presentation entitled “Getting Started with Desired State Configuration (DSC)”. During his talked Jeff gave an overview of DSC and walked through an example of a push mode configuration. A copy of his presentation materials are available here . A recording of this meeting has been …
I know it’s been a “wish” of many folks for our forums to have better code formatting. Well, if you know some PHP and a little about WordPress, you can make it happen. What we need is a WordPress plugin that hooks the action for post displays. The plugin needs to take the post …
The Omaha PowerShell User Group is now open for business! If you are in the Omaha-Council Bluffs-Lincoln area and are interested in being a part of it, either let myself, Jacob Benson (@vhusker) or Boe Prox (@proxb) know. We are currently looking for a meeting place and are shooting for having our …
# List all classes in a namespace Get-CimClass -Namespace root\CIMv2 Get-WmiObject -Namespace root\CIMv2 -List # list all classes containing “service” in their name Get-CimClass -Namespace root\CIMv2 | Where CimClassName -like ‘*service*’ | Sort CimClassName (or) Get-CimClass …