Discuss NetApp solutions for Microsoft Private Cloud and the Hyper-V platform, including FlexPod Datacenter, OnCommand Plug-in for Microsoft, and ONTAP PowerShell Toolkit.
Discuss NetApp solutions for Microsoft Private Cloud and the Hyper-V platform, including FlexPod Datacenter, OnCommand Plug-in for Microsoft, and ONTAP PowerShell Toolkit.
The link to download the powershell toolkit as per forums is https://mysupport-beta.netapp.com/ui/tools/tool-eula/5dd4e425ea373600018f94be
but when I get to that link, its a blank page.
I am trying to download the latest powershell toolkit to be able to perform snapmirror actions like break and restore etc.
Thanks
Satish
... View more
Hi All,
I need some help for a powershell script. I like to do a report for some Netapp Clusters to receive Information about Name,Ip,Location, Nodes, Nodes IP mgmt ip , aso. and all helpfull stuff
How can I extract this data, and the best way would be to do this in a biger foreach loop with multible clusters..
$myCol = @()
Connect-NaController $clusters -Credential $ControllerCredential
[System.Array]$Nodes = Get-NcNode Foreach($Node in $Nodes){ $x = "" | Select Node,Model,NodeSerialNumber,NodeSystemId,Version,IP
$x.Node = $Node.Node $x.model = $Node.NodeModel $x.NodeSerialNumber = $Node.NodeSerialNumber $x.NodeSystemId = $Node.NodeSystemId $x.Version = $Node.ProductVersion.Split(":")[0] $x.IP = $Node | Get-NcNetInterface -Role node_mgmt | select Address
$mycol += $x
}
$mycol
... View more
Hello all, Need some help. I want to run the following: volume snapshot show -fields create-time, size, state, is-constituent Using the Ontap Powershell and redirect it to a local Excel format. I can get connected to my Clusters using the Connect-NcController, just cannot get the syntax correct for the volume command. Any help would be great.
... View more
When I use powershell to remove port from Default Broadcast Domain, it show me an error message But I can do the same thing in ontap cli Is any thing I miss in powershell environment? Thanks
... View more