forked from l0ss/Grouper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_report.xml
1876 lines (1805 loc) · 197 KB
/
test_report.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
<?xml version="1.0" encoding="utf-16"?>
<report>
<GPO xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.microsoft.com/GroupPolicy/Settings">
<Identifier>
<Identifier xmlns="http://www.microsoft.com/GroupPolicy/Types">{BFF49910-16B1-4FDE-966A-7DD690C6F33C}</Identifier>
<Domain xmlns="http://www.microsoft.com/GroupPolicy/Types">forest1.net</Domain>
</Identifier>
<Name>Test Policy</Name>
<IncludeComments>true</IncludeComments>
<CreatedTime>2017-09-28T03:19:13</CreatedTime>
<ModifiedTime>2017-11-28T08:17:58</ModifiedTime>
<ReadTime>2017-11-28T08:18:17.3881236Z</ReadTime>
<SecurityDescriptor>
<SDDL xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">O:DAG:DAD:PAI(OA;CI;CR;edacfd8f-ffb3-11d1-b41d-00a0c968f939;;AU)(A;;CCDCLCSWRPWPDTLOSDRCWDWO;;;DA)(A;CI;CCDCLCSWRPWPDTLOSDRCWDWO;;;DA)(A;CI;CCDCLCSWRPWPDTLOSDRCWDWO;;;S-1-5-21-888228836-1552922583-4278570199-519)(A;CI;LCRPLORC;;;ED)(A;CI;LCRPLORC;;;AU)(A;CI;CCDCLCSWRPWPDTLOSDRCWDWO;;;SY)(A;CIIO;CCDCLCSWRPWPDTLOSDRCWDWO;;;CO)S:AI(OU;CIIDSA;WPWD;;f30e3bc2-9ff0-11d1-b603-0000f80367c1;WD)(OU;CIIOIDSA;WP;f30e3bbe-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)(OU;CIIOIDSA;WP;f30e3bbf-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)</SDDL>
<Owner xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-21-888228836-1552922583-4278570199-512</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">FOREST1\Domain Admins</Name>
</Owner>
<Group xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-21-888228836-1552922583-4278570199-512</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">FOREST1\Domain Admins</Name>
</Group>
<PermissionsPresent xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">true</PermissionsPresent>
<Permissions xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">
<InheritsFromParent>false</InheritsFromParent>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-21-888228836-1552922583-4278570199-519</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">FOREST1\Enterprise Admins</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>false</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<GPOGroupedAccessEnum>Edit, delete, modify security</GPOGroupedAccessEnum>
</Standard>
<AccessMask>0</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-9</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>false</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<GPOGroupedAccessEnum>Read</GPOGroupedAccessEnum>
</Standard>
<AccessMask>0</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-18</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">NT AUTHORITY\SYSTEM</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>false</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<GPOGroupedAccessEnum>Edit, delete, modify security</GPOGroupedAccessEnum>
</Standard>
<AccessMask>0</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-11</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">NT AUTHORITY\Authenticated Users</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>false</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<GPOGroupedAccessEnum>Apply Group Policy</GPOGroupedAccessEnum>
</Standard>
<AccessMask>0</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-21-888228836-1552922583-4278570199-512</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">FOREST1\Domain Admins</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>false</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<GPOGroupedAccessEnum>Edit, delete, modify security</GPOGroupedAccessEnum>
</Standard>
<AccessMask>0</AccessMask>
</TrusteePermissions>
</Permissions>
<AuditingPresent xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">false</AuditingPresent>
</SecurityDescriptor>
<FilterDataAvailable>true</FilterDataAvailable>
<Computer>
<VersionDirectory>81</VersionDirectory>
<VersionSysvol>81</VersionSysvol>
<Enabled>true</Enabled>
<ExtensionData>
<Extension xmlns:q1="http://www.microsoft.com/GroupPolicy/Settings/Environment" xsi:type="q1:EnvironmentVariablesSettings">
<q1:EnvironmentVariables clsid="{BF141A63-327B-438a-B9BF-2C188F13B7AD}">
<q1:EnvironmentVariable clsid="{78570023-8373-4a19-BA80-2F150738EA19}" name="updateenvvar" status="updateenvvar = envvarvalue" image="2" changed="2017-11-28 07:54:34" uid="{5C969954-85B5-4562-B428-05987E15A846}">
<q1:GPOSettingOrder>1</q1:GPOSettingOrder>
<q1:Properties action="U" name="updateenvvar" value="envvarvalue" user="0" partial="0" />
<q1:Filters />
</q1:EnvironmentVariable>
<q1:EnvironmentVariable clsid="{78570023-8373-4a19-BA80-2F150738EA19}" name="PATH" status="PATH = addtopathenvvar" image="2" changed="2017-11-28 07:54:53" uid="{89309E09-5116-4BF7-9776-01C73CBB035C}">
<q1:GPOSettingOrder>2</q1:GPOSettingOrder>
<q1:Properties action="U" name="PATH" value="addtopathenvvar" user="0" partial="1" />
<q1:Filters />
</q1:EnvironmentVariable>
</q1:EnvironmentVariables>
</Extension>
<Name>Environment Variables</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q2="http://www.microsoft.com/GroupPolicy/Settings/Lugs" xsi:type="q2:LugsSettings">
<q2:LocalUsersAndGroups clsid="{3125E937-EB16-4b4c-9934-544FC6D24D26}">
<q2:User clsid="{DF5F1855-51E5-4d24-8B1A-D9BDE98BA1D1}" name="scrooge" image="0" changed="2017-09-28 04:51:29" uid="{431D6FA2-735C-4E9C-8E10-7A1F96284B6E}">
<q2:GPOSettingOrder>1</q2:GPOSettingOrder>
<q2:Properties action="C" fullName="Scrooge McDuck" description="quack quack" cpassword="PokKHrEYe/fU/j6fkU90lJ5z4YmCSStFRwuzgCbgd3M" changeLogon="0" noChange="0" neverExpires="0" acctDisabled="0" userName="scrooge">
<q2:Members />
</q2:Properties>
<q2:Filters />
</q2:User>
<q2:Group clsid="{6D4A79E4-529C-4481-ABD0-F5BD7EA93BA7}" name="Power Users (built-in)" image="2" changed="2017-11-28 08:10:23" uid="{E375D70A-7CCD-417C-BF57-BA0F5CCD2679}">
<q2:GPOSettingOrder>2</q2:GPOSettingOrder>
<q2:Properties action="U" newName="blonkers" description="" deleteAllUsers="0" deleteAllGroups="0" removeAccounts="0" groupSid="S-1-5-32-547" groupName="Power Users (built-in)">
<q2:Members>
<q2:Member name="scrooge" action="ADD" sid="" />
</q2:Members>
</q2:Properties>
<q2:Filters />
</q2:Group>
</q2:LocalUsersAndGroups>
</Extension>
<Name>Local Users and Groups</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q3="http://www.microsoft.com/GroupPolicy/Settings/Scripts" xsi:type="q3:Scripts">
<q3:Script>
<q3:Command>C:\Users\Install\Desktop\thing2.bat</q3:Command>
<q3:Parameters>balls</q3:Parameters>
<q3:Type>Startup</q3:Type>
<q3:Order>0</q3:Order>
<q3:RunOrder>PSNotConfigured</q3:RunOrder>
</q3:Script>
</Extension>
<Name>Scripts</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q4="http://www.microsoft.com/GroupPolicy/Settings/Folders" xsi:type="q4:FoldersSettings">
<q4:Folders clsid="{77CC39E7-3D16-4f8f-AF86-EC0BBEE2C861}">
<q4:Folder clsid="{07DA02F5-F9CD-4397-A550-4AE21B6B4BD3}" name="temp" status="temp" image="2" changed="2017-11-28 07:55:53" uid="{54F5D8A0-1E37-46DB-972C-8CB7D7625E96}" bypassErrors="1">
<q4:GPOSettingOrder>1</q4:GPOSettingOrder>
<q4:Properties action="U" path="C:\temp" readOnly="0" archive="0" hidden="0" />
<q4:Filters />
</q4:Folder>
</q4:Folders>
</Extension>
<Name>Folders</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q5="http://www.microsoft.com/GroupPolicy/Settings/NetworkShares" xsi:type="q5:NetworkSharesSettings">
<q5:NetworkShares clsid="{520870D8-A6E7-47e8-A8D8-E6A4E76EAEC2}">
<q5:NetShare clsid="{2888C5E7-94FC-4739-90AA-2C1536D68BC0}" image="2" name="Sharename" userContext="0" removePolicy="0" changed="2017-11-28 07:58:14" uid="{40519F1C-864B-410C-8F9D-9997C8685E5A}">
<q5:GPOSettingOrder>1</q5:GPOSettingOrder>
<q5:Properties action="U" name="Sharename" path="C:\temp" comment="" allRegular="0" allHidden="0" allAdminDrive="0" limitUsers="NO_CHANGE" abe="NO_CHANGE" />
<q5:Filters />
</q5:NetShare>
</q5:NetworkShares>
</Extension>
<Name>Network Shares</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q6="http://www.microsoft.com/GroupPolicy/Settings/Files" xsi:type="q6:FilesSettings">
<q6:FilesSettings clsid="{215B2E53-57CE-475c-80FE-9EEC14635851}">
<q6:File clsid="{50BE44C8-567A-4ed1-B1D0-9234FE1F38AF}" name="thing3.bat" status="thing3.bat" image="2" changed="2017-11-28 07:55:29" uid="{51B59CDB-152B-4D67-A13B-D0833ACA9439}">
<q6:GPOSettingOrder>1</q6:GPOSettingOrder>
<q6:Properties action="U" fromPath="C:\Users\Install\Desktop\thing2.bat" targetPath="C:\Users\Install\Desktop\thing3.bat" readOnly="0" archive="0" hidden="0" suppress="0" />
<q6:Filters />
</q6:File>
</q6:FilesSettings>
</Extension>
<Name>Files</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q7="http://www.microsoft.com/GroupPolicy/Settings/IniFiles" xsi:type="q7:IniFilesSettings">
<q7:IniFiles clsid="{694C651A-08F2-47fa-A427-34C4F62BA207}">
<q7:Ini clsid="{EEFACE84-D3D8-4680-8D4B-BF103E759448}" name="propertyname" status="propertyname" image="2" changed="2017-11-28 07:56:19" uid="{DDFB461E-1953-45EA-8387-DB1724C6652F}">
<q7:GPOSettingOrder>1</q7:GPOSettingOrder>
<q7:Properties path="C:\temp\newini.ini" section="sectionname" value="propertyvalue" property="propertyname" action="U" />
<q7:Filters />
</q7:Ini>
</q7:IniFiles>
</Extension>
<Name>Ini Files</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q8="http://www.microsoft.com/GroupPolicy/Settings/Security" xsi:type="q8:SecuritySettings">
<q8:Account>
<q8:Name>ClearTextPassword</q8:Name>
<q8:SettingBoolean>true</q8:SettingBoolean>
<q8:Type>Password</q8:Type>
</q8:Account>
<q8:UserRightsAssignment>
<q8:Name>SeRemoteInteractiveLogonRight</q8:Name>
<q8:Member>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">lowprivusers</Name>
</q8:Member>
</q8:UserRightsAssignment>
<q8:UserRightsAssignment>
<q8:Name>SeTcbPrivilege</q8:Name>
<q8:Member>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">lowprivusers</Name>
</q8:Member>
</q8:UserRightsAssignment>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole\SecurityLevel</q8:KeyName>
<q8:SettingNumber>1</q8:SettingNumber>
<q8:Display>
<q8:Name>Recovery console: Allow automatic administrative logon</q8:Name>
<q8:Units />
<q8:DisplayBoolean>true</q8:DisplayBoolean>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Lsa\EveryoneIncludesAnonymous</q8:KeyName>
<q8:SettingNumber>1</q8:SettingNumber>
<q8:Display>
<q8:Name>Network access: Let Everyone permissions apply to anonymous users</q8:Name>
<q8:Units />
<q8:DisplayBoolean>true</q8:DisplayBoolean>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Lsa\LimitBlankPasswordUse</q8:KeyName>
<q8:SettingNumber>0</q8:SettingNumber>
<q8:Display>
<q8:Name>Accounts: Limit local account use of blank passwords to console logon only</q8:Name>
<q8:Units />
<q8:DisplayBoolean>false</q8:DisplayBoolean>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Lsa\LmCompatibilityLevel</q8:KeyName>
<q8:SettingNumber>0</q8:SettingNumber>
<q8:Display>
<q8:Name>Network security: LAN Manager authentication level</q8:Name>
<q8:Units />
<q8:DisplayString>Send LM & NTLM responses</q8:DisplayString>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Lsa\MSV1_0\RestrictReceivingNTLMTraffic</q8:KeyName>
<q8:SettingNumber>0</q8:SettingNumber>
<q8:Display>
<q8:Name>Network security: Restrict NTLM: Incoming NTLM traffic</q8:Name>
<q8:Units />
<q8:DisplayString>Allow all</q8:DisplayString>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Lsa\NoLMHash</q8:KeyName>
<q8:SettingNumber>0</q8:SettingNumber>
<q8:Display>
<q8:Name>Network security: Do not store LAN Manager hash value on next password change</q8:Name>
<q8:Units />
<q8:DisplayBoolean>false</q8:DisplayBoolean>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Print\Providers\LanMan Print Services\Servers\AddPrinterDrivers</q8:KeyName>
<q8:SettingNumber>0</q8:SettingNumber>
<q8:Display>
<q8:Name>Devices: Prevent users from installing printer drivers</q8:Name>
<q8:Units />
<q8:DisplayBoolean>false</q8:DisplayBoolean>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\SecurePipeServers\Winreg\AllowedExactPaths\Machine</q8:KeyName>
<q8:SettingStrings>
<q8:Value>System\CurrentControlSet\Control\ProductOptions</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Server Applications</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion</q8:Value>
</q8:SettingStrings>
<q8:Display>
<q8:Name>Network access: Remotely accessible registry paths</q8:Name>
<q8:Units />
<q8:DisplayStrings>
<q8:Value>System\CurrentControlSet\Control\ProductOptions</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Server Applications</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion</q8:Value>
</q8:DisplayStrings>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\SecurePipeServers\Winreg\AllowedPaths\Machine</q8:KeyName>
<q8:SettingStrings>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Print</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Windows</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Print\Printers</q8:Value>
<q8:Value>System\CurrentControlSet\Services\Eventlog</q8:Value>
<q8:Value>Software\Microsoft\OLAP Server</q8:Value>
<q8:Value>System\CurrentControlSet\Control\ContentIndex</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server\UserConfig</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server\DefaultUserConfiguration</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Perflib</q8:Value>
<q8:Value>System\CurrentControlSet\Services\SysmonLog</q8:Value>
</q8:SettingStrings>
<q8:Display>
<q8:Name>Network access: Remotely accessible registry paths and sub-paths</q8:Name>
<q8:Units />
<q8:DisplayStrings>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Print</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Windows</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Print\Printers</q8:Value>
<q8:Value>System\CurrentControlSet\Services\Eventlog</q8:Value>
<q8:Value>Software\Microsoft\OLAP Server</q8:Value>
<q8:Value>System\CurrentControlSet\Control\ContentIndex</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server\UserConfig</q8:Value>
<q8:Value>System\CurrentControlSet\Control\Terminal Server\DefaultUserConfiguration</q8:Value>
<q8:Value>Software\Microsoft\Windows NT\CurrentVersion\Perflib</q8:Value>
<q8:Value>System\CurrentControlSet\Services\SysmonLog</q8:Value>
</q8:DisplayStrings>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Control\Session Manager\SubSystems\optional</q8:KeyName>
<q8:SettingStrings>
<q8:Value>Posix</q8:Value>
</q8:SettingStrings>
<q8:Display>
<q8:Name>System settings: Optional subsystems</q8:Name>
<q8:Units />
<q8:DisplayStrings>
<q8:Value>Posix</q8:Value>
</q8:DisplayStrings>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\NullSessionPipes</q8:KeyName>
<q8:SettingStrings>
<q8:Value>COMNAP</q8:Value>
<q8:Value>COMNODE</q8:Value>
<q8:Value>SQL\QUERY</q8:Value>
<q8:Value>LLSRPC</q8:Value>
<q8:Value>BROWSER</q8:Value>
<q8:Value>netlogon</q8:Value>
<q8:Value>samr</q8:Value>
</q8:SettingStrings>
<q8:Display>
<q8:Name>Network access: Named Pipes that can be accessed anonymously</q8:Name>
<q8:Units />
<q8:DisplayStrings>
<q8:Value>COMNAP</q8:Value>
<q8:Value>COMNODE</q8:Value>
<q8:Value>SQL\QUERY</q8:Value>
<q8:Value>LLSRPC</q8:Value>
<q8:Value>BROWSER</q8:Value>
<q8:Value>netlogon</q8:Value>
<q8:Value>samr</q8:Value>
</q8:DisplayStrings>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:KeyName>MACHINE\System\CurrentControlSet\Services\LanManServer\Parameters\NullSessionShares</q8:KeyName>
<q8:SettingStrings>
<q8:Value>COMCFG</q8:Value>
</q8:SettingStrings>
<q8:Display>
<q8:Name>Network access: Shares that can be accessed anonymously</q8:Name>
<q8:Units />
<q8:DisplayStrings>
<q8:Value>COMCFG</q8:Value>
</q8:DisplayStrings>
</q8:Display>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:SystemAccessPolicyName>EnableAdminAccount</q8:SystemAccessPolicyName>
<q8:SettingNumber>0</q8:SettingNumber>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:SystemAccessPolicyName>LSAAnonymousNameLookup</q8:SystemAccessPolicyName>
<q8:SettingNumber>1</q8:SettingNumber>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:SystemAccessPolicyName>NewAdministratorName</q8:SystemAccessPolicyName>
<q8:SettingString>"borkbork"</q8:SettingString>
</q8:SecurityOptions>
<q8:SecurityOptions>
<q8:SystemAccessPolicyName>NewGuestName</q8:SystemAccessPolicyName>
<q8:SettingString>"bonkbonk"</q8:SettingString>
</q8:SecurityOptions>
<q8:File>
<q8:Path>%UserProfile%\Desktop\thing2.bat</q8:Path>
<q8:SecurityDescriptor>
<SDDL xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">D:PAR(A;OICI;FA;;;S-1-15-2-1)(A;OICIIO;FA;;;CO)(A;OICI;FA;;;SY)(A;OICI;FA;;;BA)(A;OICI;FA;;;BU)</SDDL>
<PermissionsPresent xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">true</PermissionsPresent>
<Permissions xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">
<InheritsFromParent>false</InheritsFromParent>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-15-2-1</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">APPLICATION PACKAGE AUTHORITY\ALL APPLICATION PACKAGES</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>true</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<FileGroupedAccessEnum>Full Control</FileGroupedAccessEnum>
</Standard>
<AccessMask>983551</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-3-0</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">CREATOR OWNER</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>false</ToSelf>
<ToDescendantObjects>true</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<FileGroupedAccessEnum>Full Control</FileGroupedAccessEnum>
</Standard>
<AccessMask>983551</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-18</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">NT AUTHORITY\SYSTEM</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>true</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<FileGroupedAccessEnum>Full Control</FileGroupedAccessEnum>
</Standard>
<AccessMask>983551</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-32-544</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">BUILTIN\Administrators</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>true</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<FileGroupedAccessEnum>Full Control</FileGroupedAccessEnum>
</Standard>
<AccessMask>983551</AccessMask>
</TrusteePermissions>
<TrusteePermissions>
<Trustee>
<SID xmlns="http://www.microsoft.com/GroupPolicy/Types">S-1-5-32-545</SID>
<Name xmlns="http://www.microsoft.com/GroupPolicy/Types">BUILTIN\Users</Name>
</Trustee>
<Type xsi:type="PermissionType">
<PermissionType>Allow</PermissionType>
</Type>
<Inherited>false</Inherited>
<Applicability>
<ToSelf>true</ToSelf>
<ToDescendantObjects>true</ToDescendantObjects>
<ToDescendantContainers>true</ToDescendantContainers>
<ToDirectDescendantsOnly>false</ToDirectDescendantsOnly>
</Applicability>
<Standard>
<FileGroupedAccessEnum>Full Control</FileGroupedAccessEnum>
</Standard>
<AccessMask>983551</AccessMask>
</TrusteePermissions>
</Permissions>
<AuditingPresent xmlns="http://www.microsoft.com/GroupPolicy/Types/Security">false</AuditingPresent>
</q8:SecurityDescriptor>
<q8:Mode>Propogate</q8:Mode>
</q8:File>
</Extension>
<Name>Security</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q9="http://www.microsoft.com/GroupPolicy/Settings/ScheduledTasks" xsi:type="q9:ScheduledTasksSettings">
<q9:ScheduledTasks clsid="{CC63F200-7309-4ba0-B154-A71CD118DBCC}">
<q9:Task clsid="{2DEECB1C-261F-4e13-9B21-16FB83BC03BD}" name="schedtask" image="2" changed="2017-11-28 08:00:52" uid="{9793421B-CE13-4B2F-8C62-BFADBA0053E6}">
<q9:GPOSettingOrder>1</q9:GPOSettingOrder>
<q9:Properties action="U" name="schedtask" appName="calc.exe" args="-argument1" startIn="" comment="" runAs="schedtaskuser" cpassword="PokKHrEYe/fU/j6fkU90lJ5z4YmCSStFRwuzgCbgd3M" enabled="1">
<q9:Triggers>
<q9:Trigger type="DAILY" startHour="22" startMinutes="0" beginYear="2017" beginMonth="11" beginDay="28" hasEndDate="0" repeatTask="0" interval="1" />
</q9:Triggers>
</q9:Properties>
<q9:Filters />
</q9:Task>
</q9:ScheduledTasks>
</Extension>
<Name>Scheduled Tasks</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q10="http://www.microsoft.com/GroupPolicy/Settings/Windows/Registry" xsi:type="q10:RegistrySettings">
<q10:RegistrySettings clsid="{A3CCFC41-DFDB-43a5-8D26-0FE8B954DA51}">
<q10:Registry clsid="{9CD4B2F4-923D-47f5-A062-E897DD1DAD50}" name="valuename" status="valuename" image="7" changed="2017-11-28 07:57:01" uid="{30BB9E48-DB14-43B8-A448-CA97B85F3BD6}">
<q10:GPOSettingOrder>1</q10:GPOSettingOrder>
<q10:Properties action="U" displayDecimal="0" default="0" hive="HKEY_LOCAL_MACHINE" key="SOFTWARE\cocks" name="valuename" type="REG_SZ" value="valuedata">
<q10:Values />
</q10:Properties>
<q10:Filters />
</q10:Registry>
</q10:RegistrySettings>
</Extension>
<Name>Windows Registry</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q11="http://www.microsoft.com/GroupPolicy/Settings/Shortcuts" xsi:type="q11:ShortcutSettings">
<q11:ShortcutSettings clsid="{872ECB34-B2EC-401b-A585-D32574AA90EE}">
<q11:Shortcut clsid="{4F2F7C55-2790-433e-8127-0739D1CFA327}" userContext="1" name="shortcutname" status="shortcutname" image="2" changed="2017-11-28 07:58:51" uid="{41BF11AC-0ED7-459E-A52F-A9E5E0EA433F}">
<q11:GPOSettingOrder>1</q11:GPOSettingOrder>
<q11:Properties pidl="" targetType="FILESYSTEM" action="U" comment="" shortcutKey="0" startIn="C:\temp\doodles" arguments="-argument1" iconIndex="0" targetPath="C:\temp\doodles" iconPath="" window="" shortcutPath="%DesktopDir%\shortcutname" />
<q11:Filters />
</q11:Shortcut>
</q11:ShortcutSettings>
</Extension>
<Name>Shortcuts</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q12="http://www.microsoft.com/GroupPolicy/Settings/PublicKey" xsi:type="q12:PublicKeySettings">
<q12:EFSSettings>
<q12:AllowEFS>2</q12:AllowEFS>
<q12:Options>0</q12:Options>
<q12:CacheTimeout>0</q12:CacheTimeout>
<q12:KeyLen>0</q12:KeyLen>
</q12:EFSSettings>
<q12:RootCertificateSettings>
<q12:AllowNewCAs>true</q12:AllowNewCAs>
<q12:TrustThirdPartyCAs>true</q12:TrustThirdPartyCAs>
<q12:RequireUPNNamingConstraints>false</q12:RequireUPNNamingConstraints>
</q12:RootCertificateSettings>
</Extension>
<Name>Public Key</Name>
</ExtensionData>
<ExtensionData>
<Extension xmlns:q13="http://www.microsoft.com/GroupPolicy/Settings/Registry" xsi:type="q13:RegistrySettings">
<q13:Policy>
<q13:Name>Internet proxy servers for apps</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain> This setting does not apply to desktop apps.
A semicolon-separated list of Internet proxy server IP addresses. These addresses are categorized as Internet by Windows Network Isolation and are accessible to apps that have the Internet Client or Internet Client/Server capabilities.
If you enable this policy setting, apps on proxied networks can access the Internet without relying on the Private Network capability. However, in most situations Windows Network Isolation will be able to correctly discover proxies. By default, any proxies configured with this setting are merged with proxies that are auto-discovered. To make this policy configuration the sole list of allowed proxies, enable the "Proxy definitions are authoritative" setting.
If you disable or do not configure this policy setting, apps will use the Internet proxies auto-discovered by Windows Network Isolation.
Example: [3efe:3022::1000];18.0.0.1;18.0.0.2
For more information see: http://go.microsoft.com/fwlink/p/?LinkId=234043</q13:Explain>
<q13:Supported>At least Windows Server 2012, Windows 8 or Windows RT</q13:Supported>
<q13:Category>Network/Network Isolation</q13:Category>
<q13:EditText>
<q13:Name>Domain Proxies </q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>innernetproxy.doodles</q13:Value>
</q13:EditText>
</q13:Policy>
<q13:Policy>
<q13:Name>Intranet proxy servers for apps</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain> This setting does not apply to desktop apps.
A semicolon-separated list of intranet proxy server IP addresses. These addresses are categorized as private by Windows Network Isolation and are accessible to apps that have the Home/Work Networking capability.
If you enable this policy setting, it allows an administrator to configure a set of proxies that provide access to intranet resources.
If you disable or do not configure this policy setting, Windows Network Isolation attempts to discover proxies and configures them as Internet nodes.
This setting should NOT be used to configure Internet proxies.
Example: [3efe:3022::1000]; 18.0.0.1; 18.0.0.2
For more information see: http://go.microsoft.com/fwlink/p/?LinkId=234043</q13:Explain>
<q13:Supported>At least Windows Server 2012, Windows 8 or Windows RT</q13:Supported>
<q13:Category>Network/Network Isolation</q13:Category>
<q13:EditText>
<q13:Name>Type a proxy server IP address for the intranet</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>intranetproxy.doodles</q13:Value>
</q13:EditText>
</q13:Policy>
<q13:Policy>
<q13:Name>Specify communities</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting configures a list of the communities defined to the Simple Network Management Protocol (SNMP) service.
SNMP is a protocol designed to give a user the capability to remotely manage a computer network, by polling and setting terminal values and monitoring network events.
A valid community is a community recognized by the SNMP service, while a community is a group of hosts (servers, workstations, hubs, and routers) that are administered together by SNMP. The SNMP service is a managed network node that receives SNMP packets from the network.
If you enable this policy setting, the SNMP agent only accepts requests from management systems within the communities it recognizes, and only SNMP Read operation is allowed for the community.
If you disable or do not configure this policy setting, the SNMP service takes the Valid Communities configured on the local computer instead.
Best practice: For security purposes, it is recommended to restrict the HKLM\SOFTWARE\Policies\SNMP\Parameters\ValidCommunities key to allow only the local admin group full control.
Note: It is good practice to use a cryptic community name.
Note: This policy setting has no effect if the SNMP agent is not installed on the client computer.
Also, see the other two SNMP settings: "Specify permitted managers" and "Specify trap configuration".</q13:Explain>
<q13:Supported>At least Windows Server 2003 operating systems or Windows XP Professional</q13:Supported>
<q13:Category>Network/SNMP</q13:Category>
<q13:ListBox>
<q13:Name>Communities</q13:Name>
<q13:State>Enabled</q13:State>
<q13:ExplicitValue>false</q13:ExplicitValue>
<q13:Additive>false</q13:Additive>
<q13:ValuePrefix />
<q13:Value>
<q13:Element>
<q13:Data>public</q13:Data>
</q13:Element>
<q13:Element>
<q13:Data>private</q13:Data>
</q13:Element>
<q13:Element>
<q13:Data>weeners</q13:Data>
</q13:Element>
</q13:Value>
</q13:ListBox>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow non-administrators to install drivers for these device setup classes</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting specifies a list of device setup class GUIDs describing device drivers that non-administrator members of the built-in Users group may install on the system.
If you enable this policy setting, members of the Users group may install new drivers for the specified device setup classes. The drivers must be signed according to Windows Driver Signing Policy, or be signed by publishers already in the TrustedPublisher store.
If you disable or do not configure this policy setting, only members of the Administrators group are allowed to install new device drivers on the system.</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>System/Driver Installation</q13:Category>
<q13:ListBox>
<q13:Name>Allow Users to install device drivers for these classes:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:ExplicitValue>false</q13:ExplicitValue>
<q13:Additive>false</q13:Additive>
<q13:ValuePrefix />
<q13:Value>
<q13:Element>
<q13:Data>{buggady}</q13:Data>
</q13:Element>
</q13:Value>
</q13:ListBox>
<q13:Text>
<q13:Name>To create a list of device classes, click Show. In the Show Contents dialog box, in the Value column,</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>type a GUID that represents a device setup class</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>(for example, {25DBCE51-6C8F-4A72-8A6D-B54C2B4FC835}).</q13:Name>
</q13:Text>
</q13:Policy>
<q13:Policy>
<q13:Name>Enable RPC Endpoint Mapper Client Authentication</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting controls whether RPC clients authenticate with the Endpoint Mapper Service when the call they are making contains authentication information. The Endpoint Mapper Service on computers running Windows NT4 (all service packs) cannot process authentication information supplied in this manner.
If you disable this policy setting, RPC clients will not authenticate to the Endpoint Mapper Service, but they will be able to communicate with the Endpoint Mapper Service on Windows NT4 Server.
If you enable this policy setting, RPC clients will authenticate to the Endpoint Mapper Service for calls that contain authentication information. Clients making such calls will not be able to communicate with the Windows NT4 Server Endpoint Mapper Service.
If you do not configure this policy setting, it remains disabled. RPC clients will not authenticate to the Endpoint Mapper Service, but they will be able to communicate with the Windows NT4 Server Endpoint Mapper Service.
Note: This policy will not be applied until the system is rebooted.</q13:Explain>
<q13:Supported>At least Windows XP Professional with SP2</q13:Supported>
<q13:Category>System/Remote Procedure Call</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Restrict Unauthenticated RPC clients</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting controls how the RPC server runtime handles unauthenticated RPC clients connecting to RPC servers.
This policy setting impacts all RPC applications. In a domain environment this policy setting should be used with caution as it can impact a wide range of functionality including group policy processing itself. Reverting a change to this policy setting can require manual intervention on each affected machine. This policy setting should never be applied to a domain controller.
If you disable this policy setting, the RPC server runtime uses the value of "Authenticated" on Windows Client, and the value of "None" on Windows Server versions that support this policy setting.
If you do not configure this policy setting, it remains disabled. The RPC server runtime will behave as though it was enabled with the value of "Authenticated" used for Windows Client and the value of "None" used for Server SKUs that support this policy setting.
If you enable this policy setting, it directs the RPC server runtime to restrict unauthenticated RPC clients connecting to RPC servers running on a machine. A client will be considered an authenticated client if it uses a named pipe to communicate with the server or if it uses RPC Security. RPC Interfaces that have specifically requested to be accessible by unauthenticated clients may be exempt from this restriction, depending on the selected value for this policy setting.
-- "None" allows all RPC clients to connect to RPC Servers running on the machine on which the policy setting is applied.
-- "Authenticated" allows only authenticated RPC Clients (per the definition above) to connect to RPC Servers running on the machine on which the policy setting is applied. Exemptions are granted to interfaces that have requested them.
-- "Authenticated without exceptions" allows only authenticated RPC Clients (per the definition above) to connect to RPC Servers running on the machine on which the policy setting is applied. No exceptions are allowed.
Note: This policy setting will not be applied until the system is rebooted.</q13:Explain>
<q13:Supported>At least Windows XP Professional with SP2</q13:Supported>
<q13:Category>System/Remote Procedure Call</q13:Category>
<q13:DropDownList>
<q13:Name>RPC Runtime Unauthenticated Client Restriction to Apply:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>
<q13:Name>None</q13:Name>
</q13:Value>
</q13:DropDownList>
</q13:Policy>
<q13:Policy>
<q13:Name>Always install with elevated privileges</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting directs Windows Installer to use elevated permissions when it installs any program on the system.
If you enable this policy setting, privileges are extended to all programs. These privileges are usually reserved for programs that have been assigned to the user (offered on the desktop), assigned to the computer (installed automatically), or made available in Add or Remove Programs in Control Panel. This profile setting lets users install programs that require access to directories that the user might not have permission to view or change, including directories on highly restricted computers.
If you disable or do not configure this policy setting, the system applies the current user's permissions when it installs programs that a system administrator does not distribute or offer.
Note: This policy setting appears both in the Computer Configuration and User Configuration folders. To make this policy setting effective, you must enable it in both folders.
Caution: Skilled users can take advantage of the permissions this policy setting grants to change their privileges and gain permanent access to restricted files and folders. Note that the User Configuration version of this policy setting is not guaranteed to be secure.</q13:Explain>
<q13:Supported>At least Windows 2000</q13:Supported>
<q13:Category>Windows Components/Windows Installer</q13:Category>
<q13:Text>
<q13:Name> </q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>This policy setting must be set for the machine and the user to be enforced.</q13:Name>
</q13:Text>
</q13:Policy>
<q13:Policy>
<q13:Name>Sign-in last interactive user automatically after a system-initiated restart</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting controls whether a device will automatically sign-in the last interactive user after Windows Update restarts the system.
If you enable or do not configure this policy setting, the device securely saves the user's credentials (including the user name, domain and encrypted password) to configure automatic sign-in after a Windows Update restart. After the Windows Update restart, the user is automatically signed-in and the session is automatically locked with all the lock screen apps configured for that user.
If you disable this policy setting, the device does not store the user's credentials for automatic sign-in after a Windows Update restart. The users' lock screen apps are not restarted after the system restarts.</q13:Explain>
<q13:Supported>At least Windows Server 2012 R2, Windows 8.1 or Windows RT 8.1</q13:Supported>
<q13:Category>Windows Components/Windows Logon Options</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Set the default source path for Update-Help</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting allows you to set the default value of the SourcePath parameter on the Update-Help cmdlet.
If you enable this policy setting, the Update-Help cmdlet will use the specified value as the default value for the SourcePath parameter. This default value can be overridden by specifying a different value with the SourcePath parameter on the Update-Help cmdlet.
If this policy setting is disabled or not configured, this policy setting does not set a default value for the SourcePath parameter of the Update-Help cmdlet.
Note: This policy setting exists under both Computer Configuration and User Configuration in the Group Policy Editor. The Computer Configuration policy setting takes precedence over the User Configuration policy setting.
</q13:Explain>
<q13:Supported>At least Microsoft Windows 7 or Windows Server 2008 family</q13:Supported>
<q13:Category>Windows Components/Windows PowerShell</q13:Category>
<q13:EditText>
<q13:Name>Default Source Path: </q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>asdfasdf</q13:Value>
</q13:EditText>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow Basic authentication</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting allows you to manage whether the Windows Remote Management (WinRM) service accepts Basic authentication from a remote client.
If you enable this policy setting, the WinRM service accepts Basic authentication from a remote client.
If you disable or do not configure this policy setting, the WinRM service does not accept Basic authentication from a remote client.</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>Windows Components/Windows Remote Management (WinRM)/WinRM Service</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow CredSSP authentication</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting allows you to manage whether the Windows Remote Management (WinRM) service accepts CredSSP authentication from a remote client.
If you enable this policy setting, the WinRM service accepts CredSSP authentication from a remote client.
If you disable or do not configure this policy setting, the WinRM service does not accept CredSSP authentication from a remote client.
</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>Windows Components/Windows Remote Management (WinRM)/WinRM Service</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow remote server management through WinRM</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting allows you to manage whether the Windows Remote Management (WinRM) service automatically listens on the network for requests on the HTTP transport over the default HTTP port.
If you enable this policy setting, the WinRM service automatically listens on the network for requests on the HTTP transport over the default HTTP port.
To allow WinRM service to receive requests over the network, configure the Windows Firewall policy setting with exceptions for Port 5985 (default port for HTTP).
If you disable or do not configure this policy setting, the WinRM service will not respond to requests from a remote computer, regardless of whether or not any WinRM listeners are configured.
The service listens on the addresses specified by the IPv4 and IPv6 filters. The IPv4 filter specifies one or more ranges of IPv4 addresses, and the IPv6 filter specifies one or more ranges of IPv6addresses. If specified, the service enumerates the available IP addresses on the computer and uses only addresses that fall within one of the filter ranges.
You should use an asterisk (*) to indicate that the service listens on all available IP addresses on the computer. When * is used, other ranges in the filter are ignored. If the filter is left blank, the service does not listen on any addresses.
For example, if you want the service to listen only on IPv4 addresses, leave the IPv6 filter empty.
Ranges are specified using the syntax IP1-IP2. Multiple ranges are separated using "," (comma) as the delimiter.
Example IPv4 filters:\n2.0.0.1-2.0.0.20, 24.0.0.1-24.0.0.22
Example IPv6 filters:\n3FFE:FFFF:7654:FEDA:1245:BA98:0000:0000-3FFE:FFFF:7654:FEDA:1245:BA98:3210:4562</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>Windows Components/Windows Remote Management (WinRM)/WinRM Service</q13:Category>
<q13:EditText>
<q13:Name>IPv4 filter:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>192.168.0.0/24</q13:Value>
</q13:EditText>
<q13:EditText>
<q13:Name>IPv6 filter:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value />
</q13:EditText>
<q13:Text>
<q13:Name>Syntax:</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>Type "*" to allow messages from any IP address, or leave the</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>field empty to listen on no IP address. You can specify one</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>or more ranges of IP addresses.</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name />
</q13:Text>
<q13:Text>
<q13:Name>Example IPv4 filters:</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>2.0.0.1-2.0.0.20, 24.0.0.1-24.0.0.22</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>*</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name />
</q13:Text>
<q13:Text>
<q13:Name>Example IPv6 filters:</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>3FFE:FFFF:7654:FEDA:1245:BA98:0000:0000-3FFE:FFFF:7654:FEDA:1245:BA98:3210:4562</q13:Name>
</q13:Text>
<q13:Text>
<q13:Name>*</q13:Name>
</q13:Text>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow unencrypted traffic</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting allows you to manage whether the Windows Remote Management (WinRM) service sends and receives unencrypted messages over the network.
If you enable this policy setting, the WinRM client sends and receives unencrypted messages over the network.
If you disable or do not configure this policy setting, the WinRM client sends or receives only encrypted messages over the network.</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>Windows Components/Windows Remote Management (WinRM)/WinRM Service</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Allow Remote Shell Access</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>This policy setting configures access to remote shells.
If you enable this policy setting and set it to False, new remote shell connections are rejected by the server.
If you disable or do not configure this policy setting, new remote shell connections are allowed.</q13:Explain>
<q13:Supported>At least Windows Vista</q13:Supported>
<q13:Category>Windows Components/Windows Remote Shell</q13:Category>
</q13:Policy>
<q13:Policy>
<q13:Name>Specify intranet Microsoft update service location</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Explain>Specifies an intranet server to host updates from Microsoft Update. You can then use this update service to automatically update computers on your network.
This setting lets you specify a server on your network to function as an internal update service. The Automatic Updates client will search this service for updates that apply to the computers on your network.
To use this setting, you must set two servername values: the server from which the Automatic Updates client detects and downloads updates, and the server to which updated workstations upload statistics. You can set both values to be the same server.
If the status is set to Enabled, the Automatic Updates client connects to the specified intranet Microsoft update service, instead of Windows Update, to search for and download updates. Enabling this setting means that end users in your organization don't have to go through a firewall to get updates, and it gives you the opportunity to test updates before deploying them.
If the status is set to Disabled or Not Configured, and if Automatic Updates is not disabled by policy or user preference, the Automatic Updates client connects directly to the Windows Update site on the Internet.
Note: If the "Configure Automatic Updates" policy is disabled, then this policy has no effect.
Note: This policy is not supported on Windows RT. Setting this policy will not have any effect on Windows RT PCs.</q13:Explain>
<q13:Supported>At least Windows XP Professional Service Pack 1 or Windows 2000 Service Pack 3, excluding Windows RT</q13:Supported>
<q13:Category>Windows Components/Windows Update</q13:Category>
<q13:EditText>
<q13:Name>Set the intranet update service for detecting updates:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>http://herpes</q13:Value>
</q13:EditText>
<q13:EditText>
<q13:Name>Set the intranet statistics server:</q13:Name>
<q13:State>Enabled</q13:State>
<q13:Value>http://herpes2</q13:Value>
</q13:EditText>
<q13:Text>
<q13:Name>(example: http://IntranetUpd01)</q13:Name>
</q13:Text>
</q13:Policy>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\NetworkAccessProtection\ClientConfig\Enroll\HcsGroups</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\NetworkAccessProtection\ClientConfig\UI</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\SystemCertificates\DPNGRA\Certificates</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\SystemCertificates\DPNGRA\CRLs</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\SystemCertificates\DPNGRA\CTLs</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\SystemCertificates\FVE\Certificates</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>
<q13:KeyPath>Software\Policies\Microsoft\SystemCertificates\FVE\CRLs</q13:KeyPath>
<q13:AdmSetting>false</q13:AdmSetting>
</q13:RegistrySetting>
<q13:RegistrySetting>