October 5, 2009 at 12:31 pm
Is there any reference that lists the properties and methods for the PowerShell commands and objects? I know I can use the "get-member" cmdlet, but it is a little bit tedious...:-)
Will the "graphical powershell" scripting environment have "intellisense" in its final build?
October 5, 2009 at 12:38 pm
Not sure. The HELP section for BOL seems to reference the get-help command.
http://msdn.microsoft.com/en-us/library/cc281954.aspx
The learning item references the Windows shell.
October 5, 2009 at 12:39 pm
This link mentions use of -Membertype argument to filter the output a little.
get-Process | get-Member -Membertype property
OR
get-Process | get-Member -Membertype method
I have not worked with PowerShell to much yet so I don't know if that is what you are looking for or not.
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
October 5, 2009 at 2:21 pm
Steve, Shawn, thanks for your quick responses.
Shawn - yes, that's what I'm already using ("MemberType"). While working on PS scripts, I try to build my own reference by copying the output into the good old Notepad. 🙂
Unfortunately it seems that Microsoft releases its products before finishing writing the appropriate documentation. And when, finally, the documentation is ready, it seems to me that it is written by some overseas guys, who copy and paste content without knowing the product in depth...
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply