-
Notifications
You must be signed in to change notification settings - Fork 0
/
function-activeDirectoryUser-create-object.xml
executable file
·2422 lines (2421 loc) · 156 KB
/
function-activeDirectoryUser-create-object.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<UmraProject class="cUmFormProject">
<InitialProject></InitialProject>
<Script class="cActionItemCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cActionItemScriptSetVariable">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<VariableName>%log_message%</VariableName>
<Data class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>Starting task: create activeDirectoryUser object</TextValue>
</Data>
<ResolveImmediatelyFlag>TRUE</ResolveImmediatelyFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptExecuteProject">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ProjectName>object-version-log-add</ProjectName>
</ArrayElement>
<ArrayElement class="cActionItemScriptIfThenElse">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ConditionCollection class="cVariableConditionCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cVariableCondition">
<InputVariableName>%Container_dn%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>100</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue/>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
<ArrayElement class="cVariableCondition">
<InputVariableName>%Container_dn%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>208</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue class="cUmDataNumeric">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<NumericValue>1</NumericValue>
</OperatorArgumentValue>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
</ObjectArray>
</Base>
<InvertResultFlag>FALSE</InvertResultFlag>
<AndVersusOrFlag>FALSE</AndVersusOrFlag>
<Comment></Comment>
</ConditionCollection>
<LabelThen>error</LabelThen>
<LabelElse></LabelElse>
<UseElseFlag>FALSE</UseElseFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptIfThenElse">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ConditionCollection class="cVariableConditionCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cVariableCondition">
<InputVariableName>%cn%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>100</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue/>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
<ArrayElement class="cVariableCondition">
<InputVariableName>%cn%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>208</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue class="cUmDataNumeric">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<NumericValue>1</NumericValue>
</OperatorArgumentValue>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
</ObjectArray>
</Base>
<InvertResultFlag>FALSE</InvertResultFlag>
<AndVersusOrFlag>FALSE</AndVersusOrFlag>
<Comment></Comment>
</ConditionCollection>
<LabelThen>error</LabelThen>
<LabelElse></LabelElse>
<UseElseFlag>FALSE</UseElseFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptIfThenElse">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ConditionCollection class="cVariableConditionCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cVariableCondition">
<InputVariableName>%sAMAccountName%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>100</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue/>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
<ArrayElement class="cVariableCondition">
<InputVariableName>%sAMAccountName%</InputVariableName>
<InputVariableType>1</InputVariableType>
<OperatorIndex>208</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue class="cUmDataNumeric">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<NumericValue>1</NumericValue>
</OperatorArgumentValue>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
</ObjectArray>
</Base>
<InvertResultFlag>FALSE</InvertResultFlag>
<AndVersusOrFlag>FALSE</AndVersusOrFlag>
<Comment></Comment>
</ConditionCollection>
<LabelThen>error</LabelThen>
<LabelElse></LabelElse>
<UseElseFlag>FALSE</UseElseFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptGenericTable">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>1</ErrorControl>
<ErrorControlLabel>container-error</ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<TableDefinition class="cUmraTableDefLdapQuery">
<Base class="cUmraTableDef">
<VariableName>%table_query_ad%</VariableName>
<TestVariableArray class="cUmVariableArray">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</TestVariableArray>
</Base>
<UmraLdapQueryBindingType>2</UmraLdapQueryBindingType>
<BindingString>LDAP://%domaincontroller%/%container_dn%</BindingString>
<LdapQueryFilter>(cn=*)</LdapQueryFilter>
<Attributes class="cUmraTableLdapAttributes">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cUmraTableLdapAttribute">
<LdapName>distinguishedName</LdapName>
<DisplayName>distinguishedName</DisplayName>
<DataConversionCollection class="cUmDataConversionCollection">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</DataConversionCollection>
</ArrayElement>
</ObjectArray>
</Base>
</Attributes>
<LdapSearchOptions class="cUmraTableLdapSearchOptions">
<FlagTimeTotal>FALSE</FlagTimeTotal>
<FlagTimePage>FALSE</FlagTimePage>
<FlagSizeTotal>FALSE</FlagSizeTotal>
<FlagSizePage>FALSE</FlagSizePage>
<FlagCacheResults>TRUE</FlagCacheResults>
<TimeTotalSec>120</TimeTotalSec>
<TimePageSec>120</TimePageSec>
<SizeTotal>1000</SizeTotal>
<SizePage>500</SizePage>
<ScopeOption>2</ScopeOption>
<ReferralChaseOption>0</ReferralChaseOption>
</LdapSearchOptions>
</TableDefinition>
</ArrayElement>
<ArrayElement class="cActionItemScriptGenericTable">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>1</ErrorControl>
<ErrorControlLabel>error</ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<TableDefinition class="cUmraTableDefLdapQuery">
<Base class="cUmraTableDef">
<VariableName>%table_query_ad%</VariableName>
<TestVariableArray class="cUmVariableArray">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</TestVariableArray>
</Base>
<UmraLdapQueryBindingType>2</UmraLdapQueryBindingType>
<BindingString>LDAP://%domaincontroller%</BindingString>
<LdapQueryFilter>(sAMAccountName=%sAMAccountName%)</LdapQueryFilter>
<Attributes class="cUmraTableLdapAttributes">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cUmraTableLdapAttribute">
<LdapName>distinguishedName</LdapName>
<DisplayName>distinguishedName</DisplayName>
<DataConversionCollection class="cUmDataConversionCollection">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</DataConversionCollection>
</ArrayElement>
</ObjectArray>
</Base>
</Attributes>
<LdapSearchOptions class="cUmraTableLdapSearchOptions">
<FlagTimeTotal>FALSE</FlagTimeTotal>
<FlagTimePage>FALSE</FlagTimePage>
<FlagSizeTotal>FALSE</FlagSizeTotal>
<FlagSizePage>TRUE</FlagSizePage>
<FlagCacheResults>TRUE</FlagCacheResults>
<TimeTotalSec>120</TimeTotalSec>
<TimePageSec>120</TimePageSec>
<SizeTotal>1000</SizeTotal>
<SizePage>500</SizePage>
<ScopeOption>0</ScopeOption>
<ReferralChaseOption>0</ReferralChaseOption>
</LdapSearchOptions>
</TableDefinition>
</ArrayElement>
<ArrayElement class="cActionItemScriptTableData">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<TableDataOperation>5</TableDataOperation>
<TableDataVariable>%table_query_ad%</TableDataVariable>
<ValueTextArgument1>%count_rows_table_query_ad%</ValueTextArgument1>
<ValueTextArgument2></ValueTextArgument2>
<ValueTextArgument3></ValueTextArgument3>
<ValueTextArgument4></ValueTextArgument4>
<ValueBoolArgument1>FALSE</ValueBoolArgument1>
<ValueBoolArgument2>FALSE</ValueBoolArgument2>
<ValueNumericArgument1>0</ValueNumericArgument1>
<ValueNumericArgument2>0</ValueNumericArgument2>
</ArrayElement>
<ArrayElement class="cActionItemScriptIfThenElse">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ConditionCollection class="cVariableConditionCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cVariableCondition">
<InputVariableName>%count_rows_table_query_ad%</InputVariableName>
<InputVariableType>2</InputVariableType>
<OperatorIndex>302</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue class="cUmDataNumeric">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<NumericValue>0</NumericValue>
</OperatorArgumentValue>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
</ObjectArray>
</Base>
<InvertResultFlag>FALSE</InvertResultFlag>
<AndVersusOrFlag>FALSE</AndVersusOrFlag>
<Comment></Comment>
</ConditionCollection>
<LabelThen>sAMAccountName-conflict</LabelThen>
<LabelElse></LabelElse>
<UseElseFlag>FALSE</UseElseFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptGenericTable">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>1</ErrorControl>
<ErrorControlLabel>error</ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<TableDefinition class="cUmraTableDefLdapQuery">
<Base class="cUmraTableDef">
<VariableName>%table_query_ad%</VariableName>
<TestVariableArray class="cUmVariableArray">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</TestVariableArray>
</Base>
<UmraLdapQueryBindingType>2</UmraLdapQueryBindingType>
<BindingString>LDAP://%domaincontroller%/%container_dn%</BindingString>
<LdapQueryFilter>(cn=%cn%)</LdapQueryFilter>
<Attributes class="cUmraTableLdapAttributes">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cUmraTableLdapAttribute">
<LdapName>distinguishedName</LdapName>
<DisplayName>distinguishedName</DisplayName>
<DataConversionCollection class="cUmDataConversionCollection">
<Base class="cUmraObArray">
<ObjectArray/>
</Base>
</DataConversionCollection>
</ArrayElement>
</ObjectArray>
</Base>
</Attributes>
<LdapSearchOptions class="cUmraTableLdapSearchOptions">
<FlagTimeTotal>FALSE</FlagTimeTotal>
<FlagTimePage>FALSE</FlagTimePage>
<FlagSizeTotal>FALSE</FlagSizeTotal>
<FlagSizePage>TRUE</FlagSizePage>
<FlagCacheResults>TRUE</FlagCacheResults>
<TimeTotalSec>120</TimeTotalSec>
<TimePageSec>120</TimePageSec>
<SizeTotal>1000</SizeTotal>
<SizePage>500</SizePage>
<ScopeOption>0</ScopeOption>
<ReferralChaseOption>0</ReferralChaseOption>
</LdapSearchOptions>
</TableDefinition>
</ArrayElement>
<ArrayElement class="cActionItemScriptTableData">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<TableDataOperation>5</TableDataOperation>
<TableDataVariable>%table_query_ad%</TableDataVariable>
<ValueTextArgument1>%count_rows_table_query_ad%</ValueTextArgument1>
<ValueTextArgument2></ValueTextArgument2>
<ValueTextArgument3></ValueTextArgument3>
<ValueTextArgument4></ValueTextArgument4>
<ValueBoolArgument1>FALSE</ValueBoolArgument1>
<ValueBoolArgument2>FALSE</ValueBoolArgument2>
<ValueNumericArgument1>0</ValueNumericArgument1>
<ValueNumericArgument2>0</ValueNumericArgument2>
</ArrayElement>
<ArrayElement class="cActionItemScriptIfThenElse">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<ConditionCollection class="cVariableConditionCollection">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cVariableCondition">
<InputVariableName>%count_rows_table_query_ad%</InputVariableName>
<InputVariableType>2</InputVariableType>
<OperatorIndex>302</OperatorIndex>
<OperatorVariableName></OperatorVariableName>
<OperatorArgumentValue class="cUmDataNumeric">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<NumericValue>0</NumericValue>
</OperatorArgumentValue>
<UseOperatorVariableNameFlag>FALSE</UseOperatorVariableNameFlag>
<InvertResultFlag>FALSE</InvertResultFlag>
</ArrayElement>
</ObjectArray>
</Base>
<InvertResultFlag>FALSE</InvertResultFlag>
<AndVersusOrFlag>FALSE</AndVersusOrFlag>
<Comment></Comment>
</ConditionCollection>
<LabelThen>cn-conflict</LabelThen>
<LabelElse></LabelElse>
<UseElseFlag>FALSE</UseElseFlag>
</ArrayElement>
<ArrayElement class="cActionItemScriptSetVariable">
<Base class="cActionItemScript">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>0</ErrorControl>
<ErrorControlLabel></ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
</Base>
<VariableName>%activeDirectoryUser_dn%</VariableName>
<Data class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue></TextValue>
</Data>
<ResolveImmediatelyFlag>FALSE</ResolveImmediatelyFlag>
</ArrayElement>
<ArrayElement class="cActionItemOperationUserAdCreate">
<Base class="cActionItemOperation">
<Base class="cActionItem">
<Label></Label>
<ErrorControl>1</ErrorControl>
<ErrorControlLabel>error</ErrorControlLabel>
<ErrorVariableFlag>FALSE</ErrorVariableFlag>
<ErrorVariableName></ErrorVariableName>
<ErrorVariableContents></ErrorVariableContents>
</Base>
<Explanation><![CDATA[Create a user account in Active Directory. The account is created in a Active Directory domain, organizational unit or other container. Optionally, you can specify the domain controller on which the user creation is created.
With this action you can not create local user accounts on non domain controllers or computer running Windows NT4.]]></Explanation>
<PropertyArray class="cUmraPsPropertyArray">
<Base class="cUmPropertyArray">
<Base class="cUmraObArray">
<ObjectArray>
<ArrayElement class="cUmProperty">
<Id>101000</Id>
<Name>Domain</Name>
<Type>1</Type>
<Description>The name of the domain (DNS or NETBIOS style, e.g. tools4ever.com or TOOLS4EVER) where the account will be created. Optionally you can specify the property 'Organizational Unit-Container'. If you specify a value for this property, do not specify a value for property 'LDAP-container' since this specification takes precedence.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101001</Id>
<Name>Organizational Unit-Container</Name>
<Type>1</Type>
<Description>The name of the Organizational Unit-Container where the user account must be created (example: Students or Students\Group1). If you specify a value for this property, you should also specify a value for the 'Domain' property. If you specify a value for this property, do not specify a value for property 'LDAP-container' since that specification overrules this specification.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101002</Id>
<Name>LDAP Container</Name>
<Type>1</Type>
<Description>The LDAP name of the organizational unit or container where the user account must be created (example: cn=Users, cn=Tools4ever, cn=Com). You must specify either a value for this property or values for the properties 'Domain' and 'Organizational Unit-Container'. If values for both methods are specified, this method takes precedence.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Container_dn%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101003</Id>
<Name>Domain (controller)</Name>
<Type>1</Type>
<Description>Optional: The name of the domain controller or domain, used to access to the domain, container or organizational unit where the account must be created. If this value is not specified or the name of a domain is specified, the application creates the account on a domain controller that is to be determined by Active Directory (serverless binding). If a domain controller is specified, the account is explicitly created on the specified controller (server binding). In both cases, Active Directory will replicate the account information to all domain controllers in the Active Directory forests and domains.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%DomainController%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101004</Id>
<Name>Name generation algorithm</Name>
<Type>1</Type>
<Description>The algorithm used to generate the username and full name of the user account. In general the variables %FirstName%, %MiddleName% and %LastName% are used to generate values for the variables %UserName% and %FullName% which are assigned to various name attributes.</Description>
<ExportMode>0</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101005</Id>
<Name>SAM-Account-Name</Name>
<Type>1</Type>
<Description>The user logon name (pre-Windows 2000) without the (NETBIOS) domain name. In most cases the SAM-Account-Name is equal to the prefix of the User-Principal-Name and specified by the general user name variable. The name must be unique within the domain.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%sAMAccountName%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101006</Id>
<Name>User-Principal-Name</Name>
<Type>1</Type>
<Description>The User-Principal-Name (UPN) is an Internet-style login name for the user. The UPN is the preferred logon name for Active Directory users. Users should be using their UPNs to log on to the domain. The UPN has the format '[email protected]', where 'account_name' is the upn-prefix and 'domain.com' is the upn-suffix. In most cases the User-Principal-Name prefix is specified by the general user name variable.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%sAMAccountName%@%userPrincipalName_suffix%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101007</Id>
<Name>CommonName</Name>
<Type>1</Type>
<Description>The 'CommonName' corresponds with the full name of the user account. This name is most common used in Windows' user interfaces when showing names.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%cn%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101008</Id>
<Name>DisplayName</Name>
<Type>1</Type>
<Description>The 'DisplayName' in most cases corresponds with the full name of the user account.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%displayName%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101009</Id>
<Name>Given-name</Name>
<Type>1</Type>
<Description>The Given-name corresponds with the first name of the user account. The Given-name is an optional attribute of Active Directory user accounts.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%givenName%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101010</Id>
<Name>Initials</Name>
<Type>1</Type>
<Description>The 'Initials'-field name corresponds with the middle name of the user account. The 'Initials'-field is an optional attribute of Active Directory user accounts.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%initials%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101011</Id>
<Name>Surname</Name>
<Type>1</Type>
<Description>The 'Surname' corresponds with the last name of the user account. The 'Surname' is an optional attribute of Active Directory user accounts.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%sn%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101020</Id>
<Name>Password generator</Name>
<Type>1</Type>
<Description>A password can be generated automatically. The 'Password generator' specifies how the password is generated, e.g. password length, password complexity requirements, password output variable etc. When this property is specified the password is generated automatically. The password output variable (default: %Password%) should correspond with the variable generated by the password generator.</Description>
<ExportMode>0</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101021</Id>
<Name>Password</Name>
<Type>1</Type>
<Description>The password of the user account.</Description>
<ExportMode>4097</ExportMode>
<ExportVariable>%Password%</ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Password%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101022</Id>
<Name>Description</Name>
<Type>1</Type>
<Description>A user comment. The field can contain a text of any length.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101025</Id>
<Name>Home directory</Name>
<Type>1</Type>
<Description>The path of the home directory of the user account. Note that the home directory is not created because of this specification. Instead, it specifies the home directory in the Active Directory. You can create the home directory, by adding the action 'Create Directory' to the script.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101026</Id>
<Name>Home directory drive</Name>
<Type>1</Type>
<Description>The drive letter assigned to the user's home directory for logon purposes. The drive letter must be specified as <driver-letter>:, for example E: or F:.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101023</Id>
<Name>User profile</Name>
<Type>1</Type>
<Description>A path to the user's profile. Note that this specification does not create the profile directory. Instead, it specifies the profile's path in the SAM user account database. You can create the profile directory, by adding the action 'Create Directory' to the script.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101024</Id>
<Name>Logon script</Name>
<Type>1</Type>
<Description>The path for the user's logon script file. The script file can be a .CMD file, an .EXE file, or a .BAT file.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101030</Id>
<Name>User must change password at next logon</Name>
<Type>3</Type>
<Description>The password is expired. Default value: 'Yes' (password has been expired). Use this property to force the user to change the password at the next logon. Note that the user can logon using the current password.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Create_user_must_change_password%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101031</Id>
<Name>User cannot change password</Name>
<Type>3</Type>
<Description>The user cannot change password. Default value: 'No' (user can change password). When the user cannot change the password, only the administrator can change the password.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Create_user_cannot_change_password%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101032</Id>
<Name>Password never expires</Name>
<Type>3</Type>
<Description>The password should never expire on the account. Default value: 'No' (password does expire).</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Create_password_never_expires%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101033</Id>
<Name>Store password using reversible encryption</Name>
<Type>3</Type>
<Description>An password specific option. If you have users logging on to your Windows 2000 network from Apple computers, select this option for those user accounts.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101034</Id>
<Name>Account disabled</Name>
<Type>3</Type>
<Description>The user's account is disabled. Default value: 'No'. If a user account is disabled, the account does exist but cannot be used to logon to the network.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataText">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<TextValue>%Create_account_disabled%</TextValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101035</Id>
<Name>Smart card is required for interactive logon</Name>
<Type>3</Type>
<Description>Default value: 'No'. Specify 'Yes' to securely store public and private keys, passwords, and other types of personal information for this user account. There must be a smart card reader attached to the user's computer, and they must have a personal identification number (PIN) to be able to log on to the network.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101036</Id>
<Name>Account is trusted for delegation</Name>
<Type>3</Type>
<Description>Default value: 'No'. Specify 'Yes' to give a user the ability to assign responsibility for management and administration of a portion of the domain namespace to another user, group, or organization.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101037</Id>
<Name>Account is sensitive and cannot be delegated</Name>
<Type>3</Type>
<Description>Default value: 'No'. Specify 'Yes' if this account cannot be assigned for delegation by another account.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101038</Id>
<Name>Use DES encryption types for this account</Name>
<Type>3</Type>
<Description>Default value: 'No'. Specify 'Yes' if if you need the Data Encryption Standard (DES). DES supports multiple levels of encryption, including MPPE Standard (40-bit), MPPE Standard (56-bit), MPPE Strong (128-bit), IPSec DES (40-bit), IPSec 56-bit DES, and IPSec Triple DES (3DES). For more information on any of these encryption types, see Windows 2000 Help.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101039</Id>
<Name>Don't require Kerberos preauthentication</Name>
<Type>3</Type>
<Description>Default value: 'No'. Specify 'Yes' if the account uses another implementation of the Kerberos protocol. Not all implementations or deployments of the Kerberos protocol use this feature. The Kerberos Key Distribution Center uses ticket-granting tickets for obtaining network authentication in a domain. The time at which the Key Distribution Center issues a ticket-granting ticket is important to the Kerberos protocol. Windows 2000 uses other mechanisms to synchronize time, so using the Kerberos preauthentication option works well.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101040</Id>
<Name>Computer account</Name>
<Type>3</Type>
<Description>This is a computer account for a MS Windows NT Workstation/Windows 2000 Professional or Windows NT Server/Windows 2000 Server that is a member of this domain. Default value: 'No'.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value class="cUmDataBool">
<Base class="cUmData" Version="1">
<HiddenFlag>FALSE</HiddenFlag>
</Base>
<BoolValue>FALSE</BoolValue>
</Value>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101027</Id>
<Name>Account expiration</Name>
<Type>4</Type>
<Description>The time and date when the account expires. The value can be 'Never' or a time and date.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101028</Id>
<Name>Logon hours</Name>
<Type>1</Type>
<Description>The hours the user account can log on to the domain. By default, domain logon is allowed 24 hours a day, 7 days a week.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101029</Id>
<Name>Workstations</Name>
<Type>1</Type>
<Description>Optional: the names of the workstations from which the user can log on (8 maximum), separated by commas.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101052</Id>
<Name>General - Office</Name>
<Type>1</Type>
<Description>This is the person's office location, including the building and office address or number.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101053</Id>
<Name>General - Telephone number</Name>
<Type>1</Type>
<Description>The person's phone number.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101054</Id>
<Name>General - E-mail</Name>
<Type>1</Type>
<Description>The person's e-mail address. The e-mail address appears with the universal principal name suffix (for example, [email protected]).</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101055</Id>
<Name>General - Web-page</Name>
<Type>1</Type>
<Description>The person's home page URL, either on the Internet or in the local intranet site.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101056</Id>
<Name>Address - Street</Name>
<Type>1</Type>
<Description>The person's street address in this space.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101057</Id>
<Name>Address - P.O. Box</Name>
<Type>1</Type>
<Description>The person's Post Office box number in this space.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101058</Id>
<Name>Address - City</Name>
<Type>1</Type>
<Description>The city where this person is located.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101059</Id>
<Name>Address - State/province</Name>
<Type>1</Type>
<Description>The state or province where this person is located.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101060</Id>
<Name>Address - Zip/Postal Code</Name>
<Type>1</Type>
<Description>The zip or postal code applicable for the person.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101061</Id>
<Name>Address - Country/region</Name>
<Type>1</Type>
<Description>This person's country or region</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101062</Id>
<Name>Telephone number - home</Name>
<Type>1</Type>
<Description>The home telephone number for this person.</Description>
<ExportMode>1</ExportMode>
<ExportVariable></ExportVariable>
<Value/>
</ArrayElement>
<ArrayElement class="cUmProperty">
<Id>101063</Id>
<Name>Telephone number - pager</Name>
<Type>1</Type>