forked from MicrosoftDocs/PowerShell-Docs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.openpublishing.redirection.json
5679 lines (5679 loc) · 320 KB
/
.openpublishing.redirection.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": [
{
"source_path": "reference/docs-conceptual/index.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/overview",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/powershell-scripting.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/overview",
"redirect_document_id": false
},
{
"source_path": "reference/docs-conceptual/developer/index.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/developer/windows-powershell",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/dsc/index.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/dsc/overview/decisionmaker",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/gallery/index.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/gallery/overview",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/wmf/index.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/wmf/overview",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/components/ise/windows-powershell-integrated-scripting-environment--ise-.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/whats-new/what-s-new-in-the-powershell-50-ise",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/core-powershell/console/powershell.exe-command-line-help.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/components/console/powershell.exe-command-line-help",
"redirect_document_id": false
},
{
"source_path": "reference/docs-conceptual/core-powershell/console/using-tab-expansion.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/components/console/using-tab-expansion",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/core-powershell/console-guide.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/components/console/powershell.exe-command-line-help",
"redirect_document_id": false
},
{
"source_path": "reference/docs-conceptual/core-powershell/ise/how-to-create-a-powershell-tab-in-windows-powershell-ise.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/components/ise/how-to-create-a-powershell-tab-in-windows-powershell-ise",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/core-powershell/ise/how-to-debug-scripts-in-windows-powershell-ise.md",
"redirect_url": "https://docs.microsoft.com/powershell/scripting/components/ise/how-to-debug-scripts-in-windows-powershell-ise",
"redirect_document_id": true
},
{
"source_path": "reference/docs-conceptual/samples/Getting-WMI-Objects--Get-WmiObject-.md",
"redirect_url": "https://docs.microsoft.com/PowerShell/scripting/samples/getting-wmi-objects--get-ciminstance-",
"redirect_document_id": true
},
{
"source_path": "reference/5.1/Microsoft.PowerShell.Core/about/about_psreadline.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/psreadline/about/about_psreadline?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/6/Microsoft.PowerShell.Core/about/about_psreadline.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/psreadline/about/about_psreadline?view=powershell-6",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/ISE.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/ISE?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/ISE/Get-IseSnippet.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/ISE/Get-IseSnippet?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/ISE/Import-IseSnippet.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/ISE/Import-IseSnippet?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/ISE/ISE.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/ise/?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/ISE/New-IseSnippet.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/ISE/New-IseSnippet?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Archive.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Archive?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Archive/Compress-Archive.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Archive/Compress-Archive?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Archive/Expand-Archive.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Archive/Expand-Archive?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Archive/Microsoft.PowerShell.Archive.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.archive?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Aliases.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_aliases?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Arithmetic_Operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_arithmetic_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Arrays.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_arrays?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Assignment_Operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_assignment_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Automatic_Variables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_automatic_variables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Break.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_break?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Classes.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Command_Precedence.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Command_Syntax.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_syntax?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Comment_Based_Help.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_CommonParameters.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Comparison_Operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Continue.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_continue?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Core_Commands.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_core_commands?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Data_Sections.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_data_sections?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Debuggers.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_debuggers?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_desiredstateconfiguration.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_desiredstateconfiguration?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Do.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_do?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_dsclogresource.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_dsclogresource?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Enum.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_enum?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Environment_Variables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Escape_Characters.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_escape_characters?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Eventlogs.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_eventlogs?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Execution_Policies.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_For.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_for?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Foreach.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_foreach?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Format.ps1xml.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_format.ps1xml?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions_Advanced.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions_advanced?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions_Advanced_Methods.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions_advanced_methods?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions_Advanced_Parameters.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions_advanced_parameters?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions_CmdletBindingAttribute.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions_cmdletbindingattribute?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Functions_OutputTypeAttribute.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_functions_outputtypeattribute?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Group_Policy_Settings.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_group_policy_settings?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Hash_Tables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_hash_tables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_hidden.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_hidden?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_History.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_history?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_If.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_if?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Job_Details.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_job_details?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Jobs.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_jobs?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Join.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_join?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Language_Keywords.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_keywords?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Language_Modes.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_modes?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Line_Editing.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_line_editing?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_locations.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_locations?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_logical_operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_logical_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Methods.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_methods?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Modules.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_modules?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Object_Creation.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_object_creation?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Objects.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_objects?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Operator_Precedence.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_operator_precedence?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PackageManagement.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_packagemanagement?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Parameters.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_parameters?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Parameters_Default_Values.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_parameters_default_values?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Parsing.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_parsing?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Path_Syntax.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_path_syntax?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_pipelines.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pipelines?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PowerShell_exe.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_powershell_exe?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PowerShell_Ise_exe.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_powershell_ise_exe?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Preference_Variables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Profiles.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_profiles?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Prompts.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_prompts?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Properties.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_properties?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Providers.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_providers?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_psconsolehostreadline.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_psconsolehostreadline?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_psreadline.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/psreadline/about/about_psreadline?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PSSession_Details.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pssession_details?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PSSessions.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pssessions?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_PSSnapins.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pssnapins?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Quoting_Rules.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_quoting_rules?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Redirection.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_redirection?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Ref.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_ref?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Regular_Expressions.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_regular_expressions?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Disconnected_Sessions.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_disconnected_sessions?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_FAQ.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_faq?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Jobs.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_jobs?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Output.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_output?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Requirements.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_requirements?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Troubleshooting.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_troubleshooting?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Remote_Variables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_remote_variables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Requires.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_requires?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Reserved_Words.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_reserved_words?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Return.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_return?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Run_With_PowerShell.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_run_with_powershell?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Scopes.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_scopes?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Script_Blocks.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_script_blocks?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Script_Internationalization.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_script_internationalization?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Scripts.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_scripts?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Session_Configuration_Files.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_session_configuration_files?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Session_Configurations.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_session_configurations?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Signing.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_signing?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_simplified_syntax.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_simplified_syntax?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Special_Characters.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_special_characters?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Splatting.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_splatting?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Split.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_split?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Switch.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_switch?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Throw.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_throw?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Transactions.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_transactions?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Trap.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_trap?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Try_Catch_Finally.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_try_catch_finally?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_type_accelerators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_type_accelerators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Type_Operators.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_type_operators?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Types.ps1xml.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_types.ps1xml?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Updatable_Help.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_updatable_help?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Variables.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_variables?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_While.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_while?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Wildcards.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_wildcards?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_windows_powershell_5.1.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_windows_powershell_5.1?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Windows_PowerShell_ISE.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_windows_powershell_ise?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_Windows_RT.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_windows_rt?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_WMI.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_wmi?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_WMI_Cmdlets.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_wmi_cmdlets?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/about/about_WQL.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_wql?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Add-History.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Add-History?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Add-PSSnapin.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Add-PSSnapin?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Alias-Provider.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_alias_provider?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Clear-History.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Clear-History?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Connect-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Connect-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Debug-Job.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Debug-Job?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Disable-PSRemoting.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Disable-PSRemoting?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Disable-PSSessionConfiguration.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Disable-PSSessionConfiguration?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Disconnect-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Disconnect-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Enable-PSRemoting.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Enable-PSRemoting?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Enable-PSSessionConfiguration.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Enable-PSSessionConfiguration?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Enter-PSHostProcess.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Enter-PSHostProcess?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Enter-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Enter-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Environment-Provider.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_environment_provider?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Exit-PSHostProcess.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Exit-PSHostProcess?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Exit-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Exit-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Export-Console.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Export-Console?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Export-ModuleMember.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Export-ModuleMember?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/FileSystem-Provider.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_filesystem_provider?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/ForEach-Object.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/ForEach-Object?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Function-Provider.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_function_provider?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/functions/Clear-Host.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/clear-host?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Clear-Host.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/clear-host?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/functions/Get-Verb.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/get-verb?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-Verb.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/get-verb?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-Command.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-Command?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-Help.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-Help?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-History.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-History?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-Job.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-Job?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-Module.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-Module?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-PSHostProcessInfo.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-PSHostProcessInfo?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-PSSessionCapability.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-PSSessionCapability?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-PSSessionConfiguration.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-PSSessionConfiguration?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Get-PSSnapin.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Get-PSSnapin?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Import-Module.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Import-Module?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Invoke-Command.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Invoke-Command?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Invoke-History.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Invoke-History?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Microsoft.PowerShell.Core.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-Module.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-Module?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-ModuleManifest.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-ModuleManifest?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-PSRoleCapabilityFile.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-PSRoleCapabilityFile?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-PSSessionConfigurationFile.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-PSSessionConfigurationFile?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-PSSessionOption.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-PSSessionOption?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/New-PSTransportOption.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/New-PSTransportOption?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Out-Default.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Out-Default?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Out-Host.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Out-Host?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Out-Null.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Out-Null?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Receive-Job.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Receive-Job?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Receive-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Receive-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Register-ArgumentCompleter.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Register-ArgumentCompleter?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Register-PSSessionConfiguration.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Register-PSSessionConfiguration?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Registry-Provider.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_registry_provider?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Remove-Job.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Remove-Job?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Remove-Module.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Remove-Module?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Remove-PSSession.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Remove-PSSession?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Remove-PSSnapin.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Remove-PSSnapin?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Resume-Job.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Resume-Job?view=powershell-5.1",
"redirect_document_id": false
},
{
"source_path": "reference/virtual-directory-module/5.1/Microsoft.PowerShell.Core/Save-Help.md",
"redirect_url": "https://docs.microsoft.com/powershell/module/Microsoft.PowerShell.Core/Save-Help?view=powershell-5.1",