-
Notifications
You must be signed in to change notification settings - Fork 33
/
WindowsExe.Messages.psd1
2525 lines (2396 loc) · 66.8 KB
/
WindowsExe.Messages.psd1
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
@{
net_ACCOUNTS = @'
The syntax of this command is:
NET ACCOUNTS
[/FORCELOGOFF:{minutes | NO}] [/MINPWLEN:length]
[/MAXPWAGE:{days | UNLIMITED}] [/MINPWAGE:days]
[/UNIQUEPW:number] [/DOMAIN]
NET ACCOUNTS updates the user accounts database and modifies password
and logon requirements for all accounts.
When used without options, NET ACCOUNTS displays the current settings for
password, logon limitations, and domain information.
Two conditions are required in order for options used with
NET ACCOUNTS to take effect:
- The password and logon requirements are only effective if user
accounts have been set up (use User Manager or the NET USER command).
- The NetLogon service must be running on all servers in the domain
that verify logon. NetLogon is started automatically when Windows
starts.
'@
net_ACCOUNTS_FORCELOGOFF = @'
/FORCELOGOFF:{minutes | NO} Sets the number of minutes a user has
before being forced to log off when the
account expires or valid logon hours expire.
NO, the default, prevents forced logoff.
'@
net_ACCOUNTS_MINPWLEN = @'
/MINPWLEN:length Sets the minimum number of characters for
a password. The range is 0-14 characters;
the default is 6 characters.
'@
net_ACCOUNTS_MAXPWAGE = @'
/MAXPWAGE:{days | UNLIMITED} Sets the maximum number of days that a
password is valid. No limit is specified
by using UNLIMITED. /MAXPWAGE can't be less
than /MINPWAGE. The range is 1-999; the
default is to leave the value unchanged.
'@
net_ACCOUNTS_MINPWAGE = @'
/MINPWAGE:days Sets the minimum number of days that must
pass before a user can change a password.
A value of 0 sets no minimum time. The range
is 0-999; the default is 0 days. /MINPWAGE
can't be more than /MAXPWAGE.
'@
net_ACCOUNTS_UNIQUEPW = @'
/UNIQUEPW:number Requires that a user's passwords be unique
through the specified number of password
changes. The maximum value is 24.
'@
net_ACCOUNTS_DOMAIN = @'
/DOMAIN Performs the operation on a domain
controller of the current domain. Otherwise,
the operation is performed on the local
computer.
'@
net_COMPUTER = @'
The syntax of this command is:
NET COMPUTER
\\computername {/ADD | /DEL}
NET COMPUTER adds or deletes computers from a domain database. This
command is available only on Windows NT Servers.
'@
net_COMPUTER_ADD = 'Adds the specified computer to the domain.'
net_COMPUTER_DEL = 'Removes the specified computer from the domain.'
net_CONFIG = @'
NET CONFIG
[SERVER | WORKSTATION]
NET CONFIG displays configuration information of the Workstation or
Server service. When used without the SERVER or WORKSTATION switch,
it displays a list of configurable services. To get help with
configuring a service, type NET HELP CONFIG service.
'@
net_CONFIG_SERVER = @'
SERVER Displays information about the configuration of
the Server service.
'@
net_CONFIG_WORKSTATION = @'
WORKSTATION Displays information about the configuration of
the Workstation service.
'@
net_CONTINUE = 'NET CONTINUE reactivates a Windows service that has been suspended by NET PAUSE.'
net_FILE = @'
The syntax of this command is:
NET FILE
[id [/CLOSE]]
NET FILE closes a shared file and removes file locks. When used without
options, it lists the open files on a server. The listing includes the
identification number assigned to an open file, the pathname of the file,
the username, and the number of locks on the file.
This command works only on computers running the Server service.
'@
net_FILE_CLOSE = @'
/CLOSE Closes an open file and removes file locks. Type this command
from the server where the file is shared.
'@
net_GROUP = @'
The syntax of this command is:
NET GROUP
[groupname [/COMMENT:"text"]] [/DOMAIN]
groupname {/ADD [/COMMENT:"text"] | /DELETE} [/DOMAIN]
groupname username [...] {/ADD | /DELETE} [/DOMAIN]
NET GROUP adds, displays, or modifies global groups on servers. Used
without parameters, it displays the groupnames on the server.
'@
net_GROUP_COMMENT = @'
/COMMENT:"text" Adds a comment for a new or existing group.
Enclose the text in quotation marks.
'@
net_GROUP_DOMAIN = @'
/DOMAIN Performs the operation on a domain controller
of the current domain. Otherwise, the operation is
performed on the local computer.
'@
net_GROUP_ADD = @'
/ADD Adds a group, or adds a username to a group.
'@
net_GROUP_DELETE = @'
/DELETE Removes a group, or removes a username from a group.
'@
net_HELP = 'NET HELP displays usage help for NET'
net_HELP_COMMAND = 'Usage help for the command: '
net_HELP_NAMES = @'
NET HELP NAMES explains different types of names in NET HELP syntax lines.
'@
net_HELP_SERVICES = @'
NET HELP SERVICES lists some of the services you can start.
'@
net_HELP_SYNTAX = @'
NET HELP SERVICES lists some of the services you can start.
'@
net_HELPMSG = @'
The syntax of this command is:
NET HELPMSG
message#
NET HELPMSG displays information about Windows network messages
(such as error, warning, and alert messages). When you type NET HELPMSG and
the numerical error (for example, "net helpmsg 2182"), Windows tells you
about the message and suggests actions you can take to solve the problem.
message# Is the numerical Windows error with which you need help.
'@
net_LOCALGROUP = @'
The syntax of this command is:
NET LOCALGROUP
[groupname [/COMMENT:"text"]] [/DOMAIN]
groupname {/ADD [/COMMENT:"text"] | /DELETE} [/DOMAIN]
groupname name [...] {/ADD | /DELETE} [/DOMAIN]
NET LOCALGROUP modifies local groups on computers. When used without
options, it displays the local groups on the computer.
groupname Is the name of the local group to add, expand, or
delete. Supply only a groupname to view a list of
users or global groups in a local group.
'@
net_LOCALGROUP_COMMENT = @'
/COMMENT:"text" Adds a comment for a new or existing group.
Enclose the text in quotation marks.
'@
net_LOCALGROUP_DOMAIN = @'
/DOMAIN Performs the operation on the domain controller
of the current domain. Otherwise, the operation is
performed on the local workstation.
'@
net_LOCALGROUP_ADD = @'
/ADD Adds a groupname or username to a local group. An account
must be established for users or global groups added to a
local group with this command.
'@
net_LOCALGROUP_DELETE = @'
/DELETE Removes a groupname or username from a local group.
'@
net_PAUSE = 'NET PAUSE suspends a Windows service or resource. Pausing a service puts it on hold.'
net_SESSION = @'
The syntax of this command is:
NET SESSION
[\\computername] [/DELETE] [/LIST]
NET SESSION lists or disconnects sessions between the computer and other
computers on the network. When used without options, it displays information
about all sessions with the computer of current focus.
This command works only on servers.
'@
net_SESSION_DELETE = @'
/DELETE Ends the session between the local computer and
computername, and closes all open files on the computer
for the session. If computername is omitted,
all sessions are ended.
'@
net_SESSION_LIST = @'
/LIST Displays information in a list rather than a table.
'@
net_SHARE = @'
The syntax of this command is:
NET SHARE
sharename
sharename=drive:path [/GRANT:user,[READ | CHANGE | FULL]]
[/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents| Programs | BranchCache | None]
sharename [/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents | Programs | BranchCache | None]
{sharename | devicename | drive:path} /DELETE
sharename \\computername /DELETE
NET SHARE makes a server's resources available to network users. When
used without options, it lists information about all resources being
shared on the computer. For each resource, Windows reports the
devicename(s) or pathname(s) and a descriptive comment associated with it.
sharename Is the network name of the shared resource. Type
NET SHARE with a sharename only to display information
about that share.
drive:path Specifies the absolute path of the directory to
be shared.
'@
net_SHARE_GRANT = @'
/GRANT:user,perm Creates the share with a security descriptor that gives
the requested permissions to the specified user. This
option may be used more than once to give share permissions
to multiple users.
'@
net_SHARE_USERS = @'
/USERS:number Sets the maximum number of users who can
simultaneously access the shared resource.
'@
net_SHARE_UNLIMITED = @'
/UNLIMITED Specifies an unlimited number of users can
simultaneously access the shared resource
'@
net_SHARE_REMARK = @'
/REMARK:"text" Adds a descriptive comment about the resource.
Enclose the text in quotation marks.
'@
net_SHARE_DELETE = @'
/DELETE Stops sharing the resource.
'@
net_SHARE_CACHE_Manual = @'
/CACHE:Manual Enables manual client caching of programs and documents
from this share
'@
net_SHARE_CACHE_Documents = @'
/CACHE:Documents Enables automatic caching of documents from this share
'@
net_SHARE_CACHE_Programs = @'
/CACHE:Programs Enables automatic caching of documents and programs
from this share
'@
net_SHARE_CACHE_BranchCache = @'
/CACHE:BranchCache Manual caching of documents with BranchCache enabled
from this share
'@
net_SHARE_CACHE_None = @'
/CACHE:None Disables caching from this share
'@
net_START = 'Start a Windows service'
net_STATISTICS = @'
NET STATISTICS displays the statistics log for the local Workstation or Server service.
Used without parameters, NET STATISTICS displays the services for which statistics are available.
'@
net_STATISTICS_SERVER = 'Displays the Server service statistics.'
net_STATISTICS_WORKSTATION = 'Displays the Workstation service statistics.'
net_STOP = 'Stop a Windows service'
net_TIME = @'
The syntax of this command is:
NET TIME
[\\computername | /DOMAIN[:domainname] | /RTSDOMAIN[:domainname]] [/SET]
NET TIME synchronizes the computer's clock with that of another computer
or domain, or displays the time for a computer or domain. When used without
options on a Windows Server domain, it displays the current
date and time at the computer designated as the time server for the domain.
\\computername Is the name of the computer you want to check or
synchronize with.
'@
net_TIME_DOMAIN = @'
/DOMAIN[:domainname] Specifies to synchronize the time from the Primary Domain
Controller of domainname.
'@
net_TIME_RTSDOMAIN = @'
/RTSDOMAIN[:domainname] Specifies to synchronize with a Reliable Time Server
from domainname.
'@
net_TIME_SET = @'
/SET Synchronizes the computer's time with the time
on the specified computer or domain.
'@
net_USE = @'
The syntax of this command is:
NET USE
[devicename | *] [\\computername\sharename[\volume] [password | *]]
[/USER:[domainname\]username]
[/USER:[dotted domain name\]username]
[/USER:[username@dotted domain name]
[/SMARTCARD]
[/SAVECRED]
[[/DELETE] | [/PERSISTENT:{YES | NO}]]
NET USE {devicename | *} [password | *] /HOME
NET USE [/PERSISTENT:{YES | NO}]
NET USE connects a computer to a shared resource or disconnects a
computer from a shared resource. When used without options, it lists
the computer's connections.
devicename Assigns a name to connect to the resource or specifies
the device to be disconnected. There are two kinds of
devicenames: disk drives (D: through Z:) and printers
(LPT1: through LPT3:). Type an asterisk instead of a
specific devicename to assign the next available
devicename.
\\computername Is the name of the computer controlling the shared
resource. If the computername contains blank characters,
enclose the double backslash (\\) and the computername
in quotation marks (" "). The computername may be from
1 to 15 characters long.
\sharename Is the network name of the shared resource.
\volume Specifies a NetWare volume on the server. You must have
Client Services for Netware (Windows Workstations)
or Gateway Service for Netware (Windows Server)
installed and running to connect to NetWare servers.
password Is the password needed to access the shared resource.
* Produces a prompt for the password. The password is
not displayed when you type it at the password prompt.
'@
net_USE_USER = @'
/USER Specifies a different username with which the connection
is made.
domainname Specifies another domain. If domain is omitted,
the current logged on domain is used.
username Specifies the username with which to logon.
'@
net_USE_SMARTCARD = @'
/SMARTCARD Specifies that the connection is to use credentials on
a smart card.
'@
net_USE_SAVECRED = @'
/SAVECRED Specifies that the username and password are to be saved.
This switch is ignored unless the command prompts for username
and password.
'@
net_USE_HOME = @'
/HOME Connects a user to their home directory.
'@
net_USE_DELETE = @'
/DELETE Cancels a network connection and removes the connection
from the list of persistent connections.
'@
net_USE_PERSISTENT = @'
/PERSISTENT Controls the use of persistent network connections.
The default is the setting used last.
YES Saves connections as they are made, and restores
them at next logon.
NO Does not save the connection being made or subsequent
connections; existing connections will be restored at
next logon. Use the /DELETE switch to remove
persistent connections.
'@
net_USER = @'
The syntax of this command is:
NET USER
[username [password | *] [options]] [/DOMAIN]
username {password | *} /ADD [options] [/DOMAIN]
username [/DELETE] [/DOMAIN]
username [/TIMES:{times | ALL}]
username [/ACTIVE: {YES | NO}]
NET USER creates and modifies user accounts on computers. When used
without switches, it lists the user accounts for the computer. The
user account information is stored in the user accounts database.
username Is the name of the user account to add, delete, modify, or
view. The name of the user account can have as many as
20 characters.
password Assigns or changes a password for the user's account.
A password must satisfy the minimum length set with the
/MINPWLEN option of the NET ACCOUNTS command. It can have as
many as 14 characters.
* Produces a prompt for the password. The password is not
displayed when you type it at a password prompt.
'@
net_USER_DOMAIN = @'
/DOMAIN Performs the operation on a domain controller of
the current domain.
'@
net_USER_ADD = @'
/ADD Adds a user account to the user accounts database.
'@
net_USER_DELETE = @'
/DELETE Removes a user account from the user accounts database.
'@
net_USER_ACTIVE = @'
/ACTIVE:{YES | NO} Activates or deactivates the account. If
the account is not active, the user cannot
access the server. The default is YES.
'@
net_USER_COMMENT = @'
/COMMENT:"text" Provides a descriptive comment about the
user's account. Enclose the text in
quotation marks.
'@
net_USER_COUNTRYCODE = @'
/COUNTRYCODE:nnn Uses the operating system country/region code
to implement the specified language files for
a user's help and error messages. A value of
0 signifies the default country/region code.
'@
net_USER_EXPIRES = @'
/EXPIRES:{date | NEVER} Causes the account to expire if date is
set. NEVER sets no time limit on the
account. An expiration date is in the
form mm/dd/yy(yy). Months can be a number,
spelled out, or abbreviated with three
letters. Year can be two or four numbers.
Use slashes(/) (no spaces) to separate
parts of the date.
'@
net_USER_FULLNAME = @'
/FULLNAME:"name" Is a user's full name (rather than a
username). Enclose the name in quotation
marks.
'@
net_USER_HOMEDIR = @'
/HOMEDIR:pathname Sets the path for the user's home directory.
The path must exist.
'@
net_USER_PASSWORDCHG = @'
/PASSWORDCHG:{YES | NO} Specifies whether users can change their
own password. The default is YES.
'@
net_USER_PASSWORDREQ = @'
/PASSWORDREQ:{YES | NO} Specifies whether a user account must have
a password. The default is YES.
'@
net_USER_LOGONPASSWORDCHG = @'
/LOGONPASSWORDCHG:{YES|NO} Specifies whether user should change their
own password at the next logon.The default is NO.
'@
net_USER_PROFILEPATH = @'
/PROFILEPATH[:path] Sets a path for the user's logon profile.
'@
net_USER_SCRIPTPATH = @'
/SCRIPTPATH:pathname Is the location of the user's logon
script.
'@
net_USER_TIMES = @'
/TIMES:{times | ALL} Is the logon hours. TIMES is expressed as
day[-day][,day[-day]],time[-time][,time
[-time]], limited to 1-hour increments.
Days can be spelled out or abbreviated.
Hours can be 12- or 24-hour notation. For
12-hour notation, use am, pm, a.m., or
p.m. ALL means a user can always log on,
and a blank value means a user can never
log on. Separate day and time entries with
a comma, and separate multiple day and time
entries with a semicolon.
'@
net_USER_USERCOMMENT = @'
/USERCOMMENT:"text" Lets an administrator add or change the User
Comment for the account.
'@
net_USER_WORKSTATIONS = @'
/WORKSTATIONS:{computername[,...] | *}
Lists as many as eight computers from
which a user can log on to the network. If
/WORKSTATIONS has no list or if the list is *,
the user can log on from any computer.
'@
net_VIEW = @'
The syntax of this command is:
NET VIEW
[\\computername [/CACHE] | [/ALL] | /DOMAIN[:domainname]]
NET VIEW displays a list of resources being shared on a computer. When used
without options, it displays a list of computers in the current domain or
network.
\\computername Is a computer whose shared resources you want
to view.
'@
net_VIEW_DOMAIN = @'
/DOMAIN:domainname Specifies the domain for which you want to
view the available computers. If domainname is
omitted, displays all domains in the local area
network.
'@
net_VIEW_CACHE = @'
/CACHE Displays the offline client caching settings for
the resources on the specified computer
'@
net_VIEW_ALL = @'
/ALL Displays all the shares including the $ shares
'@
# All netsh_* entries generated by:
# $x = GenNetshCommandTree
# $x.Psd1Entries | clip
netsh_add = @'
Adds a configuration entry to a list of entries.
'@
netsh_add_helper = @'
Installs a helper DLL.
'@
netsh_advfirewall = @'
Changes to the `netsh advfirewall' context.
'@
netsh_advfirewall_consec = @'
Changes to the `netsh advfirewall consec' context.
'@
netsh_advfirewall_consec_add = @'
Adds a new connection security rule.
'@
netsh_advfirewall_consec_add_rule = @'
Adds a new connection security rule.
'@
netsh_advfirewall_consec_delete = @'
Deletes all matching connection security rules.
'@
netsh_advfirewall_consec_delete_rule = @'
Deletes all matching connection security rules.
'@
netsh_advfirewall_consec_dump = @'
Displays a configuration script.
'@
netsh_advfirewall_consec_help = @'
Displays a list of commands.
'@
netsh_advfirewall_consec_set = @'
Sets new values for properties of an existing rule.
'@
netsh_advfirewall_consec_set_rule = @'
Sets new values for properties of an existing rule.
'@
netsh_advfirewall_consec_show = @'
Displays a specified connection security rule.
'@
netsh_advfirewall_consec_show_rule = @'
Displays a specified connection security rule.
'@
netsh_advfirewall_dump = @'
Displays a configuration script.
'@
netsh_advfirewall_export = @'
Exports the current policy to a file.
'@
netsh_advfirewall_firewall = @'
Changes to the `netsh advfirewall firewall' context.
'@
netsh_advfirewall_firewall_add = @'
Adds a new inbound or outbound firewall rule.
'@
netsh_advfirewall_firewall_add_rule = @'
Adds a new inbound or outbound firewall rule.
'@
netsh_advfirewall_firewall_delete = @'
Deletes all matching firewall rules.
'@
netsh_advfirewall_firewall_delete_rule = @'
Deletes all matching firewall rules.
'@
netsh_advfirewall_firewall_dump = @'
Displays a configuration script.
'@
netsh_advfirewall_firewall_help = @'
Displays a list of commands.
'@
netsh_advfirewall_firewall_set = @'
Sets new values for properties of a existing rule.
'@
netsh_advfirewall_firewall_set_rule = @'
Sets new values for properties of a existing rule.
'@
netsh_advfirewall_firewall_show = @'
Displays a specified firewall rule.
'@
netsh_advfirewall_firewall_show_rule = @'
Displays a specified firewall rule.
'@
netsh_advfirewall_help = @'
Displays a list of commands.
'@
netsh_advfirewall_import = @'
Imports a policy file into the current policy store.
'@
netsh_advfirewall_mainmode = @'
Changes to the `netsh advfirewall mainmode' context.
'@
netsh_advfirewall_mainmode_add = @'
Adds a new mainmode rule.
'@
netsh_advfirewall_mainmode_add_rule = @'
Adds a new mainmode rule.
'@
netsh_advfirewall_mainmode_delete = @'
Deletes all matching mainmode rules.
'@
netsh_advfirewall_mainmode_delete_rule = @'
Deletes all matching mainmode rules.
'@
netsh_advfirewall_mainmode_dump = @'
Displays a configuration script.
'@
netsh_advfirewall_mainmode_help = @'
Displays a list of commands.
'@
netsh_advfirewall_mainmode_set = @'
Sets new values for properties of an existing rule.
'@
netsh_advfirewall_mainmode_set_rule = @'
Sets new values for properties of an existing rule.
'@
netsh_advfirewall_mainmode_show = @'
Displays a specified mainmode rule.
'@
netsh_advfirewall_mainmode_show_rule = @'
Displays a specified mainmode rule.
'@
netsh_advfirewall_monitor = @'
Changes to the `netsh advfirewall monitor' context.
'@
netsh_advfirewall_monitor_delete = @'
Deletes all matching security associations.
'@
netsh_advfirewall_monitor_dump = @'
Displays a configuration script.
'@
netsh_advfirewall_monitor_help = @'
Displays a list of commands.
'@
netsh_advfirewall_monitor_show = @'
Shows the runtime Firewall policy settings.
'@
netsh_advfirewall_monitor_show_consec = @'
Displays current consec state information.
'@
netsh_advfirewall_monitor_show_currentprofile = @'
Displays the currently active profiles.
'@
netsh_advfirewall_monitor_show_firewall = @'
Displays current firewall state information.
'@
netsh_advfirewall_monitor_show_mainmode = @'
Displays current mainmode state information.
'@
netsh_advfirewall_monitor_show_mmsa = @'
Displays the main mode SAs
'@
netsh_advfirewall_monitor_show_qmsa = @'
Displays the quick mode SAs.
'@
netsh_advfirewall_reset = @'
Resets the policy to the default out-of-box policy.
'@
netsh_advfirewall_set = @'
Sets the per-profile or global settings.
'@
netsh_advfirewall_set_allprofiles = @'
Sets properties in all profiles.
'@
netsh_advfirewall_set_currentprofile = @'
Sets properties in the active profile.
'@
netsh_advfirewall_set_domainprofile = @'
Sets properties in the domain profile.
'@
netsh_advfirewall_set_global = @'
Sets the global properties.
'@
netsh_advfirewall_set_privateprofile = @'
Sets properties in the private profile.
'@
netsh_advfirewall_set_publicprofile = @'
Sets properties in the public profile.
'@
netsh_advfirewall_show = @'
Displays profile or global properties.
'@
netsh_advfirewall_show_allprofiles = @'
Displays properties for all profiles.
'@
netsh_advfirewall_show_currentprofile = @'
Displays properties for the active profile.
'@
netsh_advfirewall_show_domainprofile = @'
Displays properties for the domain properties.
'@
netsh_advfirewall_show_global = @'
Displays the global properties.
'@
netsh_advfirewall_show_privateprofile = @'
Displays properties for the private profile.
'@
netsh_advfirewall_show_publicprofile = @'
Displays properties for the public profile.
'@
netsh_advfirewall_show_store = @'
Displays the policy store for the current interactive session.
'@
netsh_branchcache = @'
Changes to the `netsh branchcache' context.
'@
netsh_branchcache_dump = @'
Displays a configuration script.
'@
netsh_branchcache_exportkey = @'
Exports the content information key.
'@
netsh_branchcache_flush = @'
Flushes the contents of the cache.
'@
netsh_branchcache_help = @'
Displays a list of commands.
'@
netsh_branchcache_importkey = @'
Imports a new content information key.
'@
netsh_branchcache_reset = @'
Resets the BranchCache service.
'@
netsh_branchcache_set = @'
Sets configuration parameters.
'@
netsh_branchcache_set_cachesize = @'
Sets the size of the local cache.
'@
netsh_branchcache_set_key = @'
Generates a new content information key.
'@
netsh_branchcache_set_localcache = @'
Sets the location of the local cache.
'@
netsh_branchcache_set_publicationcache = @'
Sets the location of the local publication cache.
'@
netsh_branchcache_set_publicationcachesize = @'
Sets the size of the local publication cache.
'@
netsh_branchcache_set_service = @'
Sets the status of the BranchCache service.
'@
netsh_branchcache_show = @'
Displays configuration parameters.
'@
netsh_branchcache_show_hostedcache = @'
Displays the location of the hosted cache.
'@
netsh_branchcache_show_localcache = @'
Displays the status of the local cache.
'@
netsh_branchcache_show_publicationcache = @'
Displays the status of the local publication cache.
'@
netsh_branchcache_show_status = @'
Displays the current status of the BranchCache service.
'@
netsh_branchcache_smb = @'
Changes to the `netsh branchcache smb' context.
'@
netsh_branchcache_smb_dump = @'
Displays a configuration script.
'@
netsh_branchcache_smb_help = @'
Displays a list of commands.
'@
netsh_branchcache_smb_set = @'
Sets configuration parameters.
'@
netsh_branchcache_smb_set_latency = @'
Sets BranchCache SMB latency.
'@
netsh_branchcache_smb_show = @'
Displays configuration parameters.
'@
netsh_branchcache_smb_show_latency = @'
Displays BranchCache SMB latency settings.
'@
netsh_bridge = @'
Changes to the `netsh bridge' context.
'@
netsh_bridge_dump = @'
Displays a configuration script.
'@
netsh_bridge_help = @'
Displays a list of commands.
'@
netsh_bridge_install = @'
Installs the component corresponding to the current context.
'@
netsh_bridge_set = @'
Sets configuration information.
'@
netsh_bridge_set_adapter = @'
Modifies the bridge configuration for a specified adapter.
'@
netsh_bridge_show = @'
Displays information.
'@
netsh_bridge_show_adapter = @'
Shows the adapters configured as a single bridge.
'@
netsh_bridge_uninstall = @'
Removes the component corresponding to the current context.
'@
netsh_delete = @'
Deletes a configuration entry from a list of entries.
'@
netsh_delete_helper = @'
Removes a helper DLL.
'@
netsh_dhcpclient = @'
Changes to the `netsh dhcpclient' context.
'@
netsh_dnsclient = @'
Changes to the `netsh dnsclient' context.
'@
netsh_dnsclient_add = @'
Adds a configuration entry to a table.
'@
netsh_dnsclient_add_dnsservers = @'
Adds a static DNS server address.
'@
netsh_dnsclient_delete = @'
Deletes a configuration entry from a table.
'@
netsh_dnsclient_delete_dnsservers = @'
Deletes the DNS server from the specified interface.
'@
netsh_dnsclient_dump = @'
Displays a configuration script.
'@
netsh_dnsclient_help = @'
Displays a list of commands.
'@
netsh_dnsclient_set = @'
Sets configuration information.
'@
netsh_dnsclient_set_dnsservers = @'
Sets DNS server mode and addresses.
'@
netsh_dnsclient_show = @'
Displays information.
'@
netsh_dnsclient_show_state = @'
Shows the dns state.
'@
netsh_dump = @'
Displays a configuration script.
'@
netsh_exec = @'
Runs a script file.
'@
netsh_firewall = @'
Changes to the `netsh firewall' context.
'@
netsh_firewall_add = @'
Adds firewall configuration.
'@
netsh_firewall_delete = @'
Deletes firewall configuration.
'@
netsh_firewall_dump = @'
Displays a configuration script.
'@
netsh_firewall_help = @'
Displays a list of commands.
'@
netsh_firewall_set = @'
Sets firewall configuration.
'@
netsh_firewall_show = @'
Shows firewall configuration.
'@
netsh_help = @'
Displays a list of commands.
'@
netsh_http = @'
Changes to the `netsh http' context.
'@
netsh_http_add = @'
Adds a configuration entry to a table.
'@
netsh_http_add_cacheparam = @'
Adds an HTTP service cache parameter
'@
netsh_http_add_iplisten = @'