I am trying to create a cDOT export-policy rule that has 'allow-suid' set to true.
The "Create export rule" does not have a reference to the allow-suid flag
I created a new command and extended the command code to include it:
----/--
Added the parameter:
[parameter(Mandatory=$true,HelpMessage="Allow SUID")]
[string]$Suid
I added it to the expression:
... -ReadWriteSecurityFlavor" + $RwRule + " -allow-suid " + $Suid
That threw an error on unknown element
Created a new definition called SZ_Export_SUID_Rule and added a line with allow-suid
Changed the parameter in the command to reference that new definition and still get the errors.
What am I doing wrong?
Thanks in advance for the help.
-John