Quote (Deppi @ Apr 25 2013 09:31am)
Thanks!
is there any option to get all the possible commands with certain beginning listed? Also how do I get all the options of command out? I know get-command | select-string but is there any other way?
get-help is one of the most powerful cmdlets, especially when you're a beginner,
Code
get-help {cmdlet e.g get-childitem}
otherwise, with this approach you get a list of all the cmdlets;
Code
Get-Command -CommandType cmdlet
pick one and use the first procedure to get all the necessary information
if you're at the start of your journey, take a look at the following blog;
http://blogs.technet.com/b/heyscriptingguy/amazing guy who explains powershell on a humerous and comprehensive way,
This post was edited by uglygeorge08 on Apr 25 2013 06:18am