Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I trying to search for powershell toolkit documentation for cmdlet and trying to find out what are all the return object of a cmdlet, for example: Get-NcCifsSessionFile. I am trying to google and doesn't seem to find any documentation on the cmdlet anywhere. I don't want to have to download the toolkit and then find out. There got to be documentation somewhere. Any direction?
Solved! See The Solution
1 ACCEPTED SOLUTION
RajeshPanda has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Your best bet will be to use PowerShell's "Get-Help" function to display the syntax for a given cmdlet. If you'd like to get all of the methods/properties associated with a cmdlet, you can run the cmdlet and then pipe it to Get-Member like this:
Get-NcCifsSessionFile | Get-Member
This will return all of the names, types, and definitions of the data collected by the cmdlet. As far as I know, this documentation only exists within the Toolkit itself and isn't documented elsewhere.
2 REPLIES 2
RajeshPanda has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Your best bet will be to use PowerShell's "Get-Help" function to display the syntax for a given cmdlet. If you'd like to get all of the methods/properties associated with a cmdlet, you can run the cmdlet and then pipe it to Get-Member like this:
Get-NcCifsSessionFile | Get-Member
This will return all of the names, types, and definitions of the data collected by the cmdlet. As far as I know, this documentation only exists within the Toolkit itself and isn't documented elsewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can enter 'Show-NcHelp' and a browser will open with access to each cmdlet - it also groups cmdlets by category, etc.
