Dear All
i would like to create WFA command that can create Local CISF user for ONTAP cluster mode.
i found an error as below.

The command:
param (
[parameter(Mandatory=$true, HelpMessage="Cluster (controller) IP or name.")]
[string]$Cluster,
[parameter(Mandatory=$true, HelpMessage="Name of the Storage Virtual Machine in which the CIFS share will be created.")]
[string]$Vserver,
[parameter(Mandatory=$true, HelpMessage="User Name.")]
[string]$User,
[parameter(Mandatory=$false, HelpMessage="Password.")]
[Alias("Password_Password")]
[string]$Password
)
# connect to cluster
Connect-WFACluster $Cluster
Get-WFALogger -Info -message $("Creating User share: " + $User + "Password: "+ $Password)
# Add User
New-NcCifsLocalUser -UserName $User -VserverContext $Vserver -Password $Password
i also attached my command in the attached file.
if you guys have any advice please light me.
Thank you in advanced.
Richy