-
Notifications
You must be signed in to change notification settings - Fork 2
/
PSWindowsUpdate.dll-Help.xml
10653 lines (10544 loc) · 555 KB
/
PSWindowsUpdate.dll-Help.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-8"?>
<helpItems schema="maml" xmlns="http://msh">
<!-- Cmdlet: Set-PSWUSettings -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Set-PSWUSettings</command:name>
<command:verb>Set</command:verb>
<command:noun>PSWUSettings</command:noun>
<maml:description>
<maml:para>Save PSWUSettings.</maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Use Set-PSWUSettings save PSWindowsUpdate module settings to XML file.</maml:para>
</maml:description>
<command:syntax>
<!-- Parameter set: __AllParameterSets -->
<command:syntaxItem>
<maml:name>Set-PSWUSettings</maml:name>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specify alternative credential.</maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Debuger -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Debuger</maml:name>
<maml:description>
<maml:para>Debuger return original exceptions.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Properties -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Properties</maml:name>
<maml:description>
<maml:para>Alternative report message propertie.s</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SaveAsSystem -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SaveAsSystem</maml:name>
<maml:description>
<maml:para>Invoke-WUJob to save credential as system user</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SendReport -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SendReport</maml:name>
<maml:description>
<maml:para>Send report email to specific recipients.</maml:para>
<maml:para>Requires the parameter -PSWUSettings or declare the PSWUSettings.xml file in ModuleBase path.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpCredential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpCredential</maml:name>
<maml:description>
<maml:para>Save smtp credential to Credential Manager.</maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpEnableSsl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpEnableSsl</maml:name>
<maml:description>
<maml:para>Save enable ssl to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpFrom -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpFrom</maml:name>
<maml:description>
<maml:para>Save smtp sernder to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpPort -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpPort</maml:name>
<maml:description>
<maml:para>Save smtp port to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>25</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpServer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpServer</maml:name>
<maml:description>
<maml:para>Save smtp server to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpSubject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpSubject</maml:name>
<maml:description>
<maml:para>Save alternative message subject to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpTo</maml:name>
<maml:description>
<maml:para>Save smtp recipient to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Style -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Style</maml:name>
<maml:description>
<maml:para>Alternative report message format style.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
</command:syntaxItem>
</command:syntax>
<command:parameters>
<!-- Parameter: Credential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Credential</maml:name>
<maml:description>
<maml:para>Specify alternative credential.</maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SendReport -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SendReport</maml:name>
<maml:description>
<maml:para>Send report email to specific recipients.</maml:para>
<maml:para>Requires the parameter -PSWUSettings or declare the PSWUSettings.xml file in ModuleBase path.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpServer -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpServer</maml:name>
<maml:description>
<maml:para>Save smtp server to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpPort -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpPort</maml:name>
<maml:description>
<maml:para>Save smtp port to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>25</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpEnableSsl -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpEnableSsl</maml:name>
<maml:description>
<maml:para>Save enable ssl to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">bool</command:parameterValue>
<dev:type>
<maml:name>System.Boolean</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: SmtpCredential -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpCredential</maml:name>
<maml:description>
<maml:para>Save smtp credential to Credential Manager.</maml:para>
</maml:description>
<command:parameterValue required="true">PSCredential</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.PSCredential</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpTo -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpTo</maml:name>
<maml:description>
<maml:para>Save smtp recipient to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpFrom -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpFrom</maml:name>
<maml:description>
<maml:para>Save smtp sernder to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SmtpSubject -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SmtpSubject</maml:name>
<maml:description>
<maml:para>Save alternative message subject to PSWUSettings file.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Properties -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Properties</maml:name>
<maml:description>
<maml:para>Alternative report message propertie.s</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Style -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Style</maml:name>
<maml:description>
<maml:para>Alternative report message format style.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: SaveAsSystem -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SaveAsSystem</maml:name>
<maml:description>
<maml:para>Invoke-WUJob to save credential as system user</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Debuger -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Debuger</maml:name>
<maml:description>
<maml:para>Debuger return original exceptions.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:parameters>
<command:inputTypes />
<command:returnValues />
<command:examples>
<command:example>
<maml:title>---------- EXAMPLE 1 ----------</maml:title>
<dev:code>Set Office 365 as smtp server for PSWindowsUpdate module.
Set-PSWUSettings -SmtpServer smtp.office365.com -SmtpPort 587 -SmtpEnableSsl $true -SmtpSubject "PSWindowsUpdate Report" -SmtpTo [email protected] -SmtpFrom [email protected] -SmtpCredential (Get-Credential [email protected])</dev:code>
</command:example>
</command:examples>
<maml:relatedLinks>
<maml:navigationLink>
<maml:linkText>Author Blog</maml:linkText>
<maml:uri>https://commandlinegeeks.wordpress.com/</maml:uri>
</maml:navigationLink>
</maml:relatedLinks>
</command:command>
<!-- Cmdlet: Get-WindowsUpdate -->
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
<command:details>
<command:name>Get-WindowsUpdate</command:name>
<command:verb>Get</command:verb>
<command:noun>WindowsUpdate</command:noun>
<maml:description>
<maml:para>Get list of available updates meeting the criteria.</maml:para>
</maml:description>
</command:details>
<maml:description>
<maml:para>Use Get-WindowsUpdate (aka Get-WUList) cmdlet to get list of available or installed updates meeting specific criteria.</maml:para>
<maml:para>Use Download-WindowsUpdate alias to get list of updates and download it. Equivalent Get-WindowsUpdate -Download.</maml:para>
<maml:para>Use Install-WindowsUpdate (aka Get-WUInstall) alias to get list of updates and install it. Equivalent Get-WindowsUpdate -Install.</maml:para>
<maml:para>Use Hide-WindowsUpdate alias to get list of updates and hide it. Equivalent Get-WindowsUpdate -Hide.</maml:para>
<maml:para>Use Show-WindowsUpdate (aka UnHide-WindowsUpdate) alias to get list of updates and unhide it. Equivalent Get-WindowsUpdate -Hide:$false.</maml:para>
<maml:para>There are two types of filtering update: Pre search criteria, Post search criteria.</maml:para>
<maml:para>- Pre search works on server side, like example: (IsInstalled = 0 and IsHidden = 0 and CategoryIds contains '0fa1201d-4330-4fa8-8ae9-b877473b6441' )</maml:para>
<maml:para>- Post search work on client side after get the pre-filtered list of updates, like example $KBArticleID -match $Update.KBArticleIDs</maml:para>
<maml:para>Status info list:\r\n[A|R]DIMHUB\r\nA-IsAccetped\r\nR-IsRejected\r\n D-IsDownloaded\r\n F-DownloadFailed\r\n ?-IsInvoked\r\n I-IsInstalled\r\n F-InstallFailed\r\n ?-IsInvoked\r\n R-RebootRequired\r\n M-IsMandatory\r\n H-IsHidden\r\n U-IsUninstallable\r\n B-IsBeta</maml:para>
</maml:description>
<command:syntax>
<!-- Parameter set: ServiceID -->
<command:syntaxItem>
<maml:name>Get-WindowsUpdate</maml:name>
<!-- Parameter: AcceptAll -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AcceptAll</maml:name>
<maml:description>
<maml:para>Do not ask confirmation for updates. Download or Install all available updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AutoReboot -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AutoReboot</maml:name>
<maml:description>
<maml:para>Do not ask for reboot if it needed.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AutoSelectOnly -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AutoSelectOnly</maml:name>
<maml:description>
<maml:para>Install only the updates that have status AutoSelectOnWebsites on true.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AutoSelectOnWebSites -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AutoSelectOnWebSites</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates where the AutoSelectOnWebSites property has the specified value.</maml:para>
<maml:para>"AutoSelectOnWebSites=1" finds updates that are flagged to be automatically selected by Windows Update.</maml:para>
<maml:para>"AutoSelectOnWebSites=0" finds updates that are not flagged for Automatic Updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: BrowseOnly -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>BrowseOnly</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. "BrowseOnly=1" finds updates that are considered optional. "BrowseOnly=0" finds updates that are not considered optional.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Category -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Category</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that contain a specified category name (or sets of categories name), such as 'Updates', 'Security Updates', 'Critical Updates', etc...</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: CategoryIDs -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>CategoryIDs</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that belong to a specified category (or sets of UUIDs), such as '0fa1201d-4330-4fa8-8ae9-b877473b6441'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ComputerName -->
<command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named">
<maml:name>ComputerName</maml:name>
<maml:description>
<maml:para>Specify one or more computer names for remote connection. Interactive remote connection works only for checking updates. For download or install cmdlet creates an Invoke-WUJob task.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Criteria -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Criteria</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Set own string that specifies the search criteria. https://docs.microsoft.com/pl-pl/windows/desktop/api/wuapi/nf-wuapi-iupdatesearcher-search</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Debuger -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Debuger</maml:name>
<maml:description>
<maml:para>Debuger return original exceptions. For additional debug information use $DebugPreference = "Continue"</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: DeploymentAction -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>DeploymentAction</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that are deployed for a specific action, such as an installation or uninstallation that the administrator of a server specifies. "DeploymentAction='Installation'" finds updates that are deployed for installation on a destination computer. "DeploymentAction='Uninstallation'" depends on the other query criteria.</maml:para>
<maml:para>"DeploymentAction='Uninstallation'" finds updates that are deployed for uninstallation on a destination computer. "DeploymentAction='Uninstallation'" depends on the other query criteria.</maml:para>
<maml:para>If this criterion is not explicitly specified, each group of criteria that is joined to an AND operator implies "DeploymentAction='Installation'".</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Download -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Download</maml:name>
<maml:description>
<maml:para>Get list of updates and download approved updates, but do not install it.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ForceDownload -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ForceDownload</maml:name>
<maml:description>
<maml:para>Forces the download of updates that are already installed or that cannot be installed. Works only with -Download.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ForceInstall -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ForceInstall</maml:name>
<maml:description>
<maml:para>A forced installation is an installation in which an update is installed even if the metadata indicates that the update is already installed. Before you use ForceInstall to force an installation, determine whether the update is installed and available. If an update is not installed, a forced installation fails. Works only with -Install.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Hide -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Hide</maml:name>
<maml:description>
<maml:para>Get list of updates and hide/unhide approved updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IgnoreReboot -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IgnoreReboot</maml:name>
<maml:description>
<maml:para>Do not ask for reboot if it needed, but do not reboot automaticaly.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IgnoreRebootRequired -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IgnoreRebootRequired</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that specifies the restart behavior that not occurs when you install or uninstall the update.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IgnoreUserInput -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Silent">
<maml:name>IgnoreUserInput</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that the installation or uninstallation of an update can't prompt for user input.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Install -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Install</maml:name>
<maml:description>
<maml:para>Get list of updates and install approved updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IsAssigned -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IsAssigned</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that are intended for deployment by Automatic Updates. "IsAssigned=1" finds updates that are intended for deployment by Automatic Updates, which depends on the other query criteria.At most, one assigned Windows-based driver update is returned for each local device on a destination computer.</maml:para>
<maml:para>"IsAssigned=0" finds updates that are not intended to be deployed by Automatic Updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IsHidden -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IsHidden</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that are marked as hidden on the destination computer. Default search criteria is only not hidden upadates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IsInstalled -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IsInstalled</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that are installed on the destination computer.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: IsPresent -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>IsPresent</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. When set to 1, finds updates that are present on a computer.</maml:para>
<maml:para>"IsPresent=1" finds updates that are present on a destination computer.If the update is valid for one or more products, the update is considered present if it is installed for one or more of the products.</maml:para>
<maml:para>"IsPresent=0" finds updates that are not installed for any product on a destination computer.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: KBArticleID -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>KBArticleID</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that contain a KBArticleID (or sets of KBArticleIDs), such as 'KB982861'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: MaxSize -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>MaxSize</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that have MaxDownloadSize less or equal. Size is in Bytes.</maml:para>
</maml:description>
<command:parameterValue required="true">long</command:parameterValue>
<dev:type>
<maml:name>System.Int64</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: MinSize -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>MinSize</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that have MaxDownloadSize greater or equal. Size is in Bytes.</maml:para>
</maml:description>
<command:parameterValue required="true">long</command:parameterValue>
<dev:type>
<maml:name>System.Int64</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: NotCategory -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NotCategory</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that not contain a specified category name (or sets of categories name), such as 'Updates', 'Security Updates', 'Critical Updates', etc...</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NotKBArticleID -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NotKBArticleID</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that not contain a KBArticleID (or sets of KBArticleIDs), such as 'KB982861'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NotSeverity -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NotSeverity</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that not match part of severity.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NotTitle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NotTitle</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that not match part of title (case sensitive).</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: NotUpdateID -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>NotUpdateID</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates without a specific UUID (or sets of UUIDs), such as '12345678-9abc-def0-1234-56789abcdef0'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: PSWUSettings -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>PSWUSettings</maml:name>
<maml:description>
<maml:para>Required parameter for -SendReport.</maml:para>
<maml:para>Passes the parameters (as hashtable) necessary to send the report: \r\n@{SmtpServer="your.smtp.server";From="[email protected]";To="[email protected]";[Port=25];[Subject="Alternative Subject"];[Properties="Alternative object properties"];[Style="Table|List"]}</maml:para>
<maml:para>Send parameters can also be saved to a PSWUSettings.xml file in ModuleBase path: \r\nExport-Clixml @{SmtpServer="your.smtp.server";From="[email protected]";To="[email protected]";[Port=25]}"</maml:para>
</maml:description>
<command:parameterValue required="true">Hashtable</command:parameterValue>
<dev:type>
<maml:name>System.Collections.Hashtable</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: RecurseCycle -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RecurseCycle</maml:name>
<maml:description>
<maml:para>Specify number of cycles for check updates after successful update installation or system startup. First run is always main cycle (-RecurseCycle 1 or none). Second (-RecurseCycle 2) and n (-RecurseCycle n) cycle are recursive.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: RevisionNumber -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RevisionNumber</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates with a specific RevisionNumber, such as '100'. This criterion must be combined with the UpdateID param.</maml:para>
</maml:description>
<command:parameterValue required="true">int</command:parameterValue>
<dev:type>
<maml:name>System.Int32</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>0</dev:defaultValue>
</command:parameter>
<!-- Parameter: RootCategories -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>RootCategories</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that contain a specified root category name 'Critical Updates', 'Definition Updates', 'Drivers', 'Feature Packs', 'Security Updates', 'Service Packs', 'Tools', 'Update Rollups', 'Updates', 'Upgrades', 'Microsoft'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ScheduleJob -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ScheduleJob</maml:name>
<maml:description>
<maml:para>Specify time when job will start.</maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>01.01.0001 00:00:00</dev:defaultValue>
</command:parameter>
<!-- Parameter: ScheduleReboot -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ScheduleReboot</maml:name>
<maml:description>
<maml:para>Specify time when system will be rebooted.</maml:para>
</maml:description>
<command:parameterValue required="true">DateTime</command:parameterValue>
<dev:type>
<maml:name>System.DateTime</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>01.01.0001 00:00:00</dev:defaultValue>
</command:parameter>
<!-- Parameter: SendHistory -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SendHistory</maml:name>
<maml:description>
<maml:para>Send install history (Get-WUHistory) report after successful update installation or system startup.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: SendReport -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>SendReport</maml:name>
<maml:description>
<maml:para>Send report email to specific recipients.</maml:para>
<maml:para>Requires the parameter -PSWUSettings or declare the PSWUSettings.xml file (more preferred) in ModuleBase path.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: ServiceID -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ServiceID</maml:name>
<maml:description>
<maml:para>Use specific Service Manager if it's available.</maml:para>
<maml:para>Examples Of ServiceID: \r\n \r\n -- Windows Update 9482f4b4-e343-43b6-b170-9a65bc822c77 \r\n -- Microsoft Update 7971f918-a847-4430-9279-4a52d1efe18d \r\n -- Windows Store 117cab2d-82b1-4b5a-a08c-4d62dbee7782 \r\n -- Windows Server Update Service 3da21691-e39d-4da6-8a4b-b43877bcb1b7</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: Severity -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Severity</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that match part of severity, such as 'Important', 'Critical', 'Moderate', etc...</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: ShowPreSearchCriteria -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>ShowPreSearchCriteria</maml:name>
<maml:description>
<maml:para>Show choosen search criteria. Only works for pre search criteria.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: Title -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>Title</maml:name>
<maml:description>
<maml:para>Post search criteria. Finds updates that match part of title (case sensitive), such as '.NET Framework 4'.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UpdateID -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UpdateID</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates with a specific UUID (or sets of UUIDs), such as '12345678-9abc-def0-1234-56789abcdef0'.</maml:para>
</maml:description>
<command:parameterValue required="true">string[]</command:parameterValue>
<dev:type>
<maml:name>System.String[]</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: UpdateType -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>UpdateType</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates with a specific type, such as 'Driver' and 'Software'. Default value contains all updates.</maml:para>
</maml:description>
<command:parameterValue required="true">string</command:parameterValue>
<dev:type>
<maml:name>System.String</maml:name>
<maml:uri />
</dev:type>
</command:parameter>
<!-- Parameter: WithHidden -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>WithHidden</maml:name>
<maml:description>
<maml:para>Pre search criteria - native for WUAPI. Finds updates that are both hidden and not on the destination computer. Overwrite IsHidden param. Default search criteria is only not hidden upadates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
</command:syntaxItem>
<!-- Parameter set: WindowsUpdate -->
<command:syntaxItem>
<maml:name>Get-WindowsUpdate</maml:name>
<!-- Parameter: AcceptAll -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AcceptAll</maml:name>
<maml:description>
<maml:para>Do not ask confirmation for updates. Download or Install all available updates.</maml:para>
</maml:description>
<command:parameterValue required="true">SwitchParameter</command:parameterValue>
<dev:type>
<maml:name>System.Management.Automation.SwitchParameter</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>False</dev:defaultValue>
</command:parameter>
<!-- Parameter: AutoReboot -->
<command:parameter required="false" globbing="false" pipelineInput="false" position="named">
<maml:name>AutoReboot</maml:name>
<maml:description>
<maml:para>Do not ask for reboot if it needed.</maml:para>