List Modules
get-module
Load all the modules
Get-Module -ListAvailable | Import-Module
Important Command
Update-Help
Installation
http://technet.microsoft.com/en-us/library/hh847837.aspx
Crash Course on V3
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2012/WSV321
Check out what's new in powershell 3.0
http://technet.microsoft.com/en-us/library/hh857339.aspx
Guides from Technet Library
http://technet.microsoft.com/en-us/library/bb978525.aspx
Favorite Past Events
http://ewblog.edwilson.com/ewblog/post/2012/03/06/Windows-PowerShell-for-the-busy-admin.aspx
Ed and Teresa Wilson will be in the house! Meeting Date: Tuesday, October 2, 2012 - 18:30 - 20:00 Location Improving Enterprises 4449 Easton Way, Suite 100 Columbus, OH43219 See map: Google Maps Read more http://powershellgroup.org/content/powershell-saturday
Latest
From Scripting Guy 5 new tips and tricks
Create PowerShell profiles
http://msdn.microsoft.com/en-us/library/windows/desktop/bb613488(v=vs.85).aspx
help * (man for linux)
New window popup
help get-service -showwindow (v2 help get-process -online )
Auto build you commands
show-command get-wmiobject
Help can get updates
update-help (save-help)
Find the verbs
Get-verb
Find the verbs and count
Measure-object
If you have a conflict
microsoft.powershell.management\get-process
One Line is Magic
get-process | kill -whatif
get-process | kill -confirm
get-process [a-r]*[g-w] | kill -whatif
does it work well in a pipeline?
get-help get-service -full