forked from MicrosoftDocs/PowerShell-Docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.openpublishing.redirection.virtual.json
3064 lines (3064 loc) · 148 KB
/
.openpublishing.redirection.virtual.json
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
{
"redirections": [
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.wsman.management/about/about_ws-management_cmdlets",
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/About/about_WS-Management_Cmdlets.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/ise/",
"source_path": "reference/virtual-directory-module/5.1/ise.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/ise/get-isesnippet",
"source_path": "reference/virtual-directory-module/5.1/ise/get-isesnippet.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/ise/import-isesnippet",
"source_path": "reference/virtual-directory-module/5.1/ise/import-isesnippet.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/ise/",
"source_path": "reference/virtual-directory-module/5.1/ise/ise.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/ise/new-isesnippet",
"source_path": "reference/virtual-directory-module/5.1/ise/new-isesnippet.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.archive/",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.archive.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.archive/compress-archive",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.archive/compress-archive.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.archive/expand-archive",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.archive/expand-archive.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.archive/",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.archive/microsoft.powershell.archive.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_aliases",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_aliases.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_arithmetic_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_arithmetic_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_arrays",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_arrays.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_assignment_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_assignment_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_automatic_variables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_automatic_variables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_break",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_break.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_classes",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_classes.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_command_precedence",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_command_precedence.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_command_syntax",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_command_syntax.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_comment_based_help",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_comment_based_help.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_commonparameters",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_commonparameters.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_comparison_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_comparison_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_continue",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_continue.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_core_commands",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_core_commands.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_data_sections",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_data_sections.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_debuggers",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_debuggers.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_desiredstateconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_desiredstateconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_do",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_do.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_dsclogresource",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_dsclogresource.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_enum",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_enum.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_environment_variables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_environment_variables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_special_characters",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_escape_characters.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_eventlogs",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_eventlogs.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_execution_policies",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_execution_policies.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_for",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_for.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_foreach",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_foreach.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_format.ps1xml",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_format.ps1xml.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions_advanced",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions_advanced.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions_advanced_methods",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions_advanced_methods.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions_advanced_parameters",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions_advanced_parameters.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions_cmdletbindingattribute",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions_cmdletbindingattribute.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_functions_outputtypeattribute",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_functions_outputtypeattribute.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_group_policy_settings",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_group_policy_settings.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_hash_tables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_hash_tables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_hidden",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_hidden.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_history",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_history.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_if",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_if.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_job_details",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_job_details.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_jobs",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_jobs.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_join",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_join.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_language_keywords",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_language_keywords.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_language_modes",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_language_modes.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_line_editing",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_line_editing.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_locations",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_locations.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_logical_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_logical_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_methods",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_methods.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_modules",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_modules.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_object_creation",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_object_creation.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_objects",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_objects.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_operator_precedence",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_operator_precedence.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_packagemanagement",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_packagemanagement.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_parameters",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_parameters.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_parameters_default_values",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_parameters_default_values.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_parsing",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_parsing.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_path_syntax",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_path_syntax.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_pipelines",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_pipelines.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_powershell_exe",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_powershell_exe.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_powershell_ise_exe",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_powershell_ise_exe.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_preference_variables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_preference_variables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_profiles",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_profiles.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_prompts",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_prompts.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_properties",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_properties.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_providers",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_providers.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_psconsolehostreadline",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_psconsolehostreadline.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/psreadline/about/about_psreadline",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_psreadline.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_pssession_details",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_pssession_details.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_pssessions",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_pssessions.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_pssnapins",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_pssnapins.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_quoting_rules",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_quoting_rules.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_redirection",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_redirection.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_ref",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_ref.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_regular_expressions",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_regular_expressions.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_disconnected_sessions",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_disconnected_sessions.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_faq",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_faq.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_jobs",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_jobs.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_output",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_output.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_requirements",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_requirements.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_troubleshooting",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_troubleshooting.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_remote_variables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_remote_variables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_requires",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_requires.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_reserved_words",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_reserved_words.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_return",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_return.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_run_with_powershell",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_run_with_powershell.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_scopes",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_scopes.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_script_blocks",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_script_blocks.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_script_internationalization",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_script_internationalization.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_scripts",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_scripts.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_session_configuration_files",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_session_configuration_files.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_session_configurations",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_session_configurations.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_signing",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_signing.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_simplified_syntax",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_simplified_syntax.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_special_characters",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_special_characters.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_splatting",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_splatting.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_split",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_split.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_switch",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_switch.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_throw",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_throw.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_transactions",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_transactions.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_trap",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_trap.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_try_catch_finally",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_try_catch_finally.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_type_accelerators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_type_accelerators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_type_operators",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_type_operators.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_types.ps1xml",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_types.ps1xml.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_updatable_help",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_updatable_help.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_variables",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_variables.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_while",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_while.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_wildcards",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_wildcards.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_windows_powershell_5.1",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_windows_powershell_5.1.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_windows_powershell_ise",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_windows_powershell_ise.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_windows_rt",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_windows_rt.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_wmi",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_wmi.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_wmi_cmdlets",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_wmi_cmdlets.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_wql",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/about/about_wql.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/add-history",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/add-history.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/add-pssnapin",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/add-pssnapin.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_alias_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/alias-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/clear-history",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/clear-history.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/connect-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/connect-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/debug-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/debug-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/disable-psremoting",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/disable-psremoting.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/disable-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/disable-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/disconnect-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/disconnect-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/enable-psremoting",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/enable-psremoting.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/enable-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/enable-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/enter-pshostprocess",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/enter-pshostprocess.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/enter-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/enter-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_environment_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/environment-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/exit-pshostprocess",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/exit-pshostprocess.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/exit-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/exit-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/export-console",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/export-console.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/export-modulemember",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/export-modulemember.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_filesystem_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/filesystem-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/foreach-object",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/foreach-object.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_function_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/function-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/clear-host",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/functions/clear-host.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/clear-host",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/clear-host.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-verb",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/functions/get-verb.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-verb",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-verb.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-command",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-command.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-help",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-help.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-history",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-history.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-module",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-module.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-pshostprocessinfo",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-pshostprocessinfo.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-pssessioncapability",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-pssessioncapability.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/get-pssnapin",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/get-pssnapin.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/import-module",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/import-module.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/invoke-command",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/invoke-command.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/invoke-history",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/invoke-history.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/microsoft.powershell.core.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-module",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-module.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-modulemanifest",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-modulemanifest.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-psrolecapabilityfile",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-psrolecapabilityfile.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-pssessionconfigurationfile",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-pssessionconfigurationfile.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-pssessionoption",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-pssessionoption.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/new-pstransportoption",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/new-pstransportoption.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/out-default",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/out-default.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/out-host",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/out-host.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/out-null",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/out-null.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/receive-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/receive-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/receive-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/receive-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/register-argumentcompleter",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/register-argumentcompleter.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/register-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/register-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_registry_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/registry-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/remove-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/remove-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/remove-module",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/remove-module.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/remove-pssession",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/remove-pssession.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/remove-pssnapin",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/remove-pssnapin.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/resume-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/resume-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/save-help",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/save-help.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/set-psdebug",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/set-psdebug.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/set-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/set-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/set-strictmode",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/set-strictmode.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/start-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/start-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/stop-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/stop-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/suspend-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/suspend-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/test-modulemanifest",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/test-modulemanifest.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/test-pssessionconfigurationfile",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/test-pssessionconfigurationfile.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/unregister-pssessionconfiguration",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/unregister-pssessionconfiguration.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/update-help",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/update-help.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/about/about_variable_provider",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/variable-provider.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/wait-job",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/wait-job.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.core/where-object",
"source_path": "reference/virtual-directory-module/5.1/microsoft.powershell.core/where-object.md"
},
{
"redirect_document_id": false,
"redirect_url": "/powershell/module/microsoft.powershell.diagnostics/",