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
Is there relationship between WFA and DOT PowerShell toolkit?

2013-04-03
02:12 PM
3,743 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Novice question: I understand that WFA uses PowerShell under the covers. I'm also aware that NetApp offers the Data ONTAP PowerShell Toolkit (ref: https://communities.netapp.com/community/products_and_solutions/microsoft/powershell )
Is there any relationship between these kits/tools? Does WFA utilize the PS toolkit comlets? ... or does it have it's own PS code and cmdlets?
The reason I ask is I'm wondering if it might make sense to use them together or is it even possible to install them both on a WFA server.
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
PowerShell tool kit comes bundled with WFA installer; so once you install WFA you get the tool kit also.
We do utilize PS toolkit comandlets to develop commands in WFA.
So you don't need to install DOT PowerShell tool kit separately on a WFA server.
Thanks
Tanmoy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I see the Data ONTAP toolkit installed on my WFA system here:
c:\Program Files\netapp\WFA\PoSH\Modules\DataONTAP
How do I update my powershell $PROFILE to Import-Module DataONTAP? The DataONTAP module is not listed if I do Get-Module -listavailable
Thanks!
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Brian,
The following way you can import the modules,
PS C:\Documents and Settings\Administrator> Get-Item 'C:\Program Files\NetApp\WFA\PoSH\Modules\*' | Import-Module
Here the "*" makes importing the other two WFA modules along with DataONTAP..!
The same thing can be added to your $PROFILE file..!
PS C:\Documents and Settings\Administrator\Desktop> Get-Module
ModuleType Name ExportedCommands
---------- ---- ----------------
Manifest DataONTAP {Invoke-NaSnapmirrorThrottle, Resume-Nc...
Binary WFA {Copy-NaVM, Get-NaCredentials, Set-WfaC...
Script WFAWrapper {Set-WfaAcl, New-WfaZapiServer, Connect...
Warm Regards
Sivaprasad K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks! Works nice.
