You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
533 B
31 lines
533 B
<job id="myTest">
|
|
<reference object="AzRoles.AzAdminManager"/>
|
|
|
|
<script src="topen.inc" language="VBScript">
|
|
|
|
'global
|
|
Dim xmlFile
|
|
xmlFile=""
|
|
|
|
Function GetCommandArg
|
|
|
|
If 1 <> WScript.Arguments.Count Then
|
|
WScript.Echo "Usage: topen XMLFileName"
|
|
GetCommandArg=False
|
|
Else
|
|
xmlFile=WScript.Arguments.Item(0)
|
|
GetCommandArg=True
|
|
End If
|
|
End Function
|
|
|
|
|
|
'main starts
|
|
|
|
If True = GetCommandArg Then
|
|
|
|
AzPrintPolicyFile xmlFile
|
|
|
|
End If 'GetCommandArg
|
|
|
|
</script>
|
|
</job>
|