forked from PHPPlay/powerShell-Docs.zh-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.openpublishing.redirection.json
14428 lines (14428 loc) · 838 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": "developer/format/windows-powershell-formatting-files.md",
"redirect_url": "/powershell/developer/format/powershell-formatting-files",
"redirect_document_id": "True"
},
{
"source_path": "developer/format/writing-a-windows-powershell-formatting-file.md",
"redirect_url": "/powershell/developer/format/writing-a-powershell-formatting-file",
"redirect_document_id": "True"
},
{
"source_path": "developer/index.md",
"redirect_url": "/powershell/developer/windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "gallery/concepts/item-manifest-affecting-ui.md",
"redirect_url": "/powershell/gallery/concepts/package-manifest-affecting-ui",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/finding-items/filtering-items.md",
"redirect_url": "/powershell/gallery/how-to/finding-packages/filtering-packages",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/publishing-items/deleting-items.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/deleting-packages",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/publishing-items/managing-item-owners.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/managing-package-owners",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/publishing-items/publishing-an-item.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/publishing-a-package",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/publishing-items/unlisting-items.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/unlisting-packages",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/working-with-items/contacting-item-owners.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/contacting-package-owners",
"redirect_document_id": "True"
},
{
"source_path": "gallery/how-to/working-with-items/items-that-require-license-acceptance.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/packages-that-require-license-acceptance",
"redirect_document_id": "True"
},
{
"source_path": "gallery/index.md",
"redirect_url": "/powershell/gallery/overview",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/Creating-and-Publishing-an-item.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/publishing-a-package",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/Deleting-Items.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/deleting-packages",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/Managing-Item-Owners.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/managing-package-owners",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_contacting_administrators.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/contacting-administrators",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_contacting_item_owners.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/contacting-item-owners",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_creating_an_account.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/creating-an-account",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_deploy_to_azure_automation.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/deploy-to-azure-automation",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_deploy_to_azure_automation_requireLicenseAcceptance.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/deploy-to-azure-automation",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_dispute_resolution.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/dispute-resolution",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_faqs.md",
"redirect_url": "/powershell/gallery/faqs",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_filelist_feature.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/filelist-view",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_gettingstarted.md",
"redirect_url": "/powershell/gallery/getting-started",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_ItemManifestAffectingUI.md",
"redirect_url": "/powershell/gallery/concepts/package-manifest-affecting-ui",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_items_tab.md",
"redirect_url": "/powershell/gallery/how-to/finding-packages/filtering-packages",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_pseditions.md",
"redirect_url": "/powershell/gallery/how-to/finding-packages/seaching-by-psedition",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_report_abuse.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/report-abuse",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_requires_license_acceptance.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/packages-that-require-license-acceptance",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery_search_syntax.md",
"redirect_url": "/powershell/gallery/how-to/finding-packages/search-syntax",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_status.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/health-status",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery_unlist_items.md",
"redirect_url": "/powershell/gallery/how-to/publishing-packages/unlisting-packages",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psgallery/psgallery-PublishingGuidelines.md",
"redirect_url": "/powershell/gallery/concepts/publishing-guidelines",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psgallery/psgallery-SocialMediaFeedback.md",
"redirect_url": "/powershell/gallery/how-to/working-with-packages/social-media-feedback",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/get_psget_module.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/health-status",
"redirect_document_id": "False"
},
{
"source_path": "gallery/psget/module/modulewithpseditionsupport.md",
"redirect_url": "/powershell/gallery/concepts/module-psedition-support",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/PreReleaseModule.md",
"redirect_url": "/powershell/gallery/concepts/module-prerelease-support",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_find-command.md",
"redirect_url": "/powershell/module/powershellget/Find-Command",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_find-dscresource.md",
"redirect_url": "/powershell/module/powershellget/Find-DscResource",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_find-module.md",
"redirect_url": "/powershell/module/powershellget/Find-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_find-rolecapability.md",
"redirect_url": "/powershell/module/powershellget/Find-RoleCapability",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_get-installedmodule.md",
"redirect_url": "/powershell/module/powershellget/Get-InstalledModule",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_install-module.md",
"redirect_url": "/powershell/module/powershellget/Install-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_publish-module.md",
"redirect_url": "/powershell/module/powershellget/Publish-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_save-module.md",
"redirect_url": "/powershell/module/powershellget/Save-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_uninstall-module.md",
"redirect_url": "/powershell/module/powershellget/Uninstall-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_update-module.md",
"redirect_url": "/powershell/module/powershellget/Update-Module",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/psget_update-modulemanifest.md",
"redirect_url": "/powershell/module/powershellget/Update-ModuleManifest",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/module/RequireLicenseAcceptance.md",
"redirect_url": "/powershell/gallery/concepts/module-license-acceptance",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/oneget/PackageManagement_cmdlets.md",
"redirect_url": "/powershell/module/packagemanagement/",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/overview.md",
"redirect_url": "/powershell/module/powershellget/",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/psget_cmdlets_troubleshooting.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/troubleshooting-cmdlets",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/repository/bootstrapping_nuget_proivder_and_exe.md",
"redirect_url": "/powershell/gallery/how-to/getting-support/bootstrapping-nuget",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/repository/psget_get-psrepository.md",
"redirect_url": "/powershell/module/powershellget/Get-PSRepository",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/repository/psget_register-psrepository.md",
"redirect_url": "/powershell/module/powershellget/Register-PSRepository",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/repository/psget_set-psrepository.md",
"redirect_url": "/powershell/module/powershellget/Set-PSRepository",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/repository/psget_unregister-psrepository.md",
"redirect_url": "/powershell/module/powershellget/Unregister-PSRepository",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/PreReleaseScript.md",
"redirect_url": "/powershell/gallery/concepts/script-prerelease-support",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_find-script.md",
"redirect_url": "/powershell/module/powershellget/Find-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_get-installedscript.md",
"redirect_url": "/powershell/module/powershellget/Get-InstalledScript",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_install-script.md",
"redirect_url": "/powershell/module/powershellget/Install-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_new-scriptfileinfo.md",
"redirect_url": "/powershell/module/powershellget/New-ScriptFileInfo",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_publish-script.md",
"redirect_url": "/powershell/module/powershellget/Publish-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_save-script.md",
"redirect_url": "/powershell/module/powershellget/Save-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_test-scriptfileinfo.md",
"redirect_url": "/powershell/module/powershellget/Test-ScriptFileInfo",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_uninstall-script.md",
"redirect_url": "/powershell/module/powershellget/Uninstall-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_update-script.md",
"redirect_url": "/powershell/module/powershellget/Update-Script",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/psget_update-scriptfileinfo.md",
"redirect_url": "/powershell/module/powershellget/Update-ScriptFileInfo",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/script_RequireLicenseAcceptance.md",
"redirect_url": "/powershell/gallery/concepts/script-license-acceptance",
"redirect_document_id": "True"
},
{
"source_path": "gallery/psget/script/scriptwithpseditionsupport.md",
"redirect_url": "/powershell/gallery/concepts/script-psedition-support",
"redirect_document_id": "True"
},
{
"source_path": "jea/index.md",
"redirect_url": "/powershell/jea/overview",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/core-powershell/console-guide.md",
"redirect_url": "/powershell/scripting/core-powershell/console/powershell.exe-command-line-help",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/core-powershell/ise-guide.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/introducing-the-windows-powershell-ise",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/learning-windows-powershell-names.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/learning-powershell-names",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/object-pipeline.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-the-powershell-pipeline",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/scripting-with-windows-powershell.md",
"redirect_url": "/powershell/scripting/",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/understanding-important-windows-powershell-concepts.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-important-powershell-concepts",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/understanding-the-windows-powershell-pipeline.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-the-powershell-pipeline",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/fundamental/using-powershell-for-windows-administration.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/sample-scripts-for-administration",
"redirect_document_id": "True"
},
{
"source_path": "reference/docs-conceptual/getting-started/understanding-concepts-reference.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/about-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/About-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/about-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Accessibility-in-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/setup/accessibility-in-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Appendix-1---Compatibility-Aliases.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/appendix-1---compatibility-aliases?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Appendix-2---Creating-a-Custom-PowerShell-Shortcut.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/appendix-2---creating-a-custom-powershell-shortcut?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/authorization-rules-and-security-features-of-windows-powershell-web-access.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/authorization-rules-and-security-features-of-windows-powershell-web-access?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/basic-cookbooks.md",
"redirect_url": "/powershell/scripting/getting-started/basic-cookbooks?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/basic-cookbooks-reference.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/basic-cookbooks-reference?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Changing-Computer-State.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/changing-computer-state?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Collecting-Information-About-Computers.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/collecting-information-about-computers?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/console-guide.md",
"redirect_url": "/powershell/scripting/core-powershell/console-guide?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-modules.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell.md",
"redirect_url": "/powershell/scripting/core-powershell/core-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/core-powershell.md",
"redirect_url": "/powershell/scripting/powershell-scripting",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/ise/ise-module.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/introducing-the-windows-powershell-ise",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/ise/the-windows-powershell-ise-scripting-object-model.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/purpose-of-the-windows-powershell-ise-scripting-object-model",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/ise/using-the-windows-powershell-ise.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/introducing-the-windows-powershell-ise",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/ise/windows-powershell-ise-object-model-reference.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-ise-object-model-hierarchy",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/core-powershell/web-access.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/install-and-use-windows-powershell-web-access",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Creating-.NET-and-COM-Objects--New-Object-.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/creating-.net-and-com-objects--new-object-?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Creating-a-Custom-Input-Box.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/creating-a-custom-input-box?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Creating-a-Graphical-Date-Picker.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/creating-a-graphical-date-picker?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Exploring-the-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/exploring-the-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/fundamental-concepts.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental-concepts?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Getting-Detailed-Help-Information.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/getting-detailed-help-information?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Getting-Information-About-Commands.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/getting-information-about-commands?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Getting-Ready-to-Use-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/getting-started/getting-ready-to-use-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/getting-started/basic-cookbooks.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/sample-scripts-for-administration",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/getting-started/cookbooks/basic-cookbooks-reference.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/sample-scripts-for-administration",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/getting-started/fundamental/about-windows-powershell.md",
"redirect_url": "/powershell/scripting/getting-started/getting-started-with-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/getting-started/fundamental/using-windows-powershell.md",
"redirect_url": "/powershell/scripting/setup/starting-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/getting-started/fundamental-concepts.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-important-windows-powershell-concepts",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Getting-Started-with-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Getting-WMI-Objects--Get-WmiObject-.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/getting-wmi-objects--get-wmiobject-?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Create-a-PowerShell-Tab-in-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-create-a-powershell-tab-in-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Debug-Scripts-in-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-debug-scripts-in-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Use-Profiles-in-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-use-profiles-in-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Use-Tab-Completion-in-the-Script-Pane-and-Console-Pane.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-use-tab-completion-in-the-script-pane-and-console-pane?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Use-the-Console-Pane-in-the-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-use-the-console-pane-in-the-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/How-to-Write-and-Run-Scripts-in-the-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/how-to-write-and-run-scripts-in-the-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/index.md",
"redirect_url": "/powershell/scripting/powershell-scripting",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/install-and-use-windows-powershell-web-access.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/install-and-use-windows-powershell-web-access?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Installing-the-Windows-PowerShell-2.0-Engine.md",
"redirect_url": "/powershell/scripting/setup/installing-the-windows-powershell-2.0-engine?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Installing-the-Windows-PowerShell-SDK.md",
"redirect_url": "/powershell/scripting/setup/installing-the-windows-powershell-sdk?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Installing-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/setup/installing-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Introducing-the-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/introducing-the-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/ise-guide.md",
"redirect_url": "/powershell/scripting/core-powershell/ise-guide?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/ISE-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/ise-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Keyboard-Shortcuts-for-the-Windows-PowerShell-ISE.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/keyboard-shortcuts-for-the-windows-powershell-ise?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Learning-Windows-PowerShell-Names.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/learning-windows-powershell-names?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Managing-Current-Location.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/managing-current-location?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Managing-Processes-with-Process-Cmdlets.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/managing-processes-with-process-cmdlets?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Managing-Services.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/managing-services?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Managing-Windows-PowerShell-Drives.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/managing-windows-powershell-drives?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Manipulating-Items-Directly.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/manipulating-items-directly?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Archive-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.archive-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Core-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.core-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Diagnostics-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.diagnostics-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Host-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.host-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Management-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.management-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.ODataUtils-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.odatautils-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.PowerShell.Utility-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.powershell.utility-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Microsoft.WSMan.Management-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/microsoft.wsman.management-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/more-powershell-learning.md",
"redirect_url": "/powershell/scripting/getting-started/more-powershell-learning?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Multiple-selection-List-Boxes.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/multiple-selection-list-boxes?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Object-Pipeline.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/object-pipeline?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Other-Useful-Scripting-Objects.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/other-useful-scripting-objects?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PackageManagement-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/packagemanagement-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Performing-Networking-Tasks.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/performing-networking-tasks?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PowerShell.exe-Command-Line-Help.md",
"redirect_url": "/powershell/scripting/core-powershell/console/powershell.exe-command-line-help?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PowerShell-Core-on-ARM.md",
"redirect_url": "/powershell/scripting/setup/powershell-core-on-arm",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PowerShellGet-Module.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/powershellget-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSLocalAccount5-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/pslocalaccount5-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSReadline-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/psreadline-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PS-remoting-second-hop.md",
"redirect_url": "/powershell/scripting/setup/ps-remoting-second-hop?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSScheduledJob-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/psscheduledjob-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSScriptAnalyzer-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/core-modules/psscriptanalyzer-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSWorkflow-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/workflows/psworkflow-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/PSWorkflowUtility-Module.md",
"redirect_url": "/powershell/scripting/core-powershell/workflows/psworkflowutility-module?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Purpose-of-the-Windows-PowerShell-ISE-Scripting-Object-Model.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/purpose-of-the-windows-powershell-ise-scripting-object-model?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Redirecting-Data-with-Out---Cmdlets.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/redirecting-data-with-out---cmdlets?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Removing-Objects-from-the-Pipeline--Where-Object-.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/removing-objects-from-the-pipeline--where-object-?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Repeating-a-Task-for-Multiple-Objects--ForEach-Object-.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/repeating-a-task-for-multiple-objects--foreach-object-?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Running-Remote-Commands.md",
"redirect_url": "/powershell/scripting/core-powershell/running-remote-commands?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Scripting-with-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/scripting-with-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/security.md",
"redirect_url": "/powershell/scripting/setup/security?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Selecting-Items-from-a-List-Box.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/selecting-items-from-a-list-box?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Selecting-Parts-of-Objects--Select-Object-.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/selecting-parts-of-objects--select-object-?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/setup/Installing-PowerShell-Core-on-macOS-and-Linux.md",
"redirect_url": "/powershell/scripting/setup/installing-powershell-core-on-linux",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/setup/setup-reference.md",
"redirect_url": "/powershell/scripting/setup/installing-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/setup/starting-the-32-bit-version-of-windows-powershell.md",
"redirect_url": "/powershell/scripting/setup/starting-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/setup/starting-windows-powershell-on-earlier-versions-of-windows.md",
"redirect_url": "/powershell/scripting/setup/starting-windows-powershell",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/setup-reference.md",
"redirect_url": "/powershell/scripting/setup/setup-reference?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Sorting-Objects.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/sorting-objects?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Starting-the-32-Bit-Version-of-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/setup/starting-the-32-bit-version-of-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Starting-the-Windows-PowerShell-2.0-Engine.md",
"redirect_url": "/powershell/scripting/setup/starting-the-windows-powershell-2.0-engine?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Starting-Windows-PowerShell.md",
"redirect_url": "/powershell/scripting/setup/starting-windows-powershell?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Starting-Windows-PowerShell-on-Earlier-Versions-of-Windows.md",
"redirect_url": "/powershell/scripting/setup/starting-windows-powershell-on-earlier-versions-of-windows?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEAddOnToolCollection-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-iseaddontoolcollection-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEAddOnTool-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-iseaddontool-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEEditor-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-iseeditor-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEFileCollection-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isefilecollection-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEFile-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isefile-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEMenuItemCollection-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isemenuitemcollection-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEMenuItem-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isemenuitem-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISE-Object-Model-Hierarchy.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-ise-object-model-hierarchy?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISEOptions-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-iseoptions-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISESnippetCollection-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isesnippetcollection-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ISESnippetObject.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-isesnippetobject?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-ObjectModelRoot-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-objectmodelroot-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-PowerShellTabCollection-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-powershelltabcollection-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-PowerShellTab-Object.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-powershelltab-object?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/The-Windows-PowerShell-ISE-Scripting-Object-Model.md",
"redirect_url": "/powershell/scripting/core-powershell/ise/the-windows-powershell-ise-scripting-object-model?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/troubleshooting-access-problems-in-windows-powershell-web-access.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/troubleshooting-access-problems-in-windows-powershell-web-access?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/understanding-concepts-reference.md",
"redirect_url": "/powershell/scripting/getting-started/understanding-concepts-reference?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Understanding-Important-Windows-PowerShell-Concepts.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-important-windows-powershell-concepts?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Understanding-the-Windows-PowerShell-Pipeline.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/understanding-the-windows-powershell-pipeline?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/uninstall-windows-powershell-web-access.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/uninstall-windows-powershell-web-access?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/use-the-web-based-windows-powershell-console.md",
"redirect_url": "/powershell/scripting/core-powershell/web-access/use-the-web-based-windows-powershell-console?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Using-Familiar-Command-Names.md",
"redirect_url": "/powershell/scripting/getting-started/fundamental/using-familiar-command-names?view=powershell-5.1",
"redirect_document_id": "True"
},
{
"source_path": "reference/virtual-directory/Using-Format-Commands-to-Change-Output-View.md",
"redirect_url": "/powershell/scripting/getting-started/cookbooks/using-format-commands-to-change-output-view?view=powershell-5.1",
"redirect_document_id": "True"