forked from MicrosoftDocs/OfficeDocs-SharePoint-PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.openpublishing.redirection.ms-ol-sp-ps.json
More file actions
1694 lines (1694 loc) · 94 KB
/
.openpublishing.redirection.ms-ol-sp-ps.json
File metadata and controls
1694 lines (1694 loc) · 94 KB
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": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/Add-SPOServicePrioritizationAppRegistration",
"redirect_document_id": false
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/Get-SPOServicePrioritizationAppRegistrations",
"redirect_document_id": false
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/Remove-SPOServicePrioritizationAppRegistration",
"redirect_document_id": false
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/Set-SPOServicePrioritizationAppRegistration",
"redirect_document_id": false
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOContainerTypeBilling.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spocontainertypebilling",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOContainerUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spocontaineruser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOContentSecurityPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spocontentsecuritypolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOFontPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spofontpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOGeoAdministrator.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spogeoadministrator",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOHubSiteAssociation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spohubsiteassociation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOHubToHubAssociation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spohubtohubassociation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOListDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spolistdesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOOrgAssetsLibrary.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spoorgassetslibrary",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOServicePrioritizationAppRegistration.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-sposerviceprioritizationappregistration",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteCollectionAppCatalog.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositecollectionappcatalog",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositedesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteDesignTask.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositedesigntask",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteOneDriveClassicFeatures.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositeonedriveclassicfeatures",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteScript.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositescript",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOSiteScriptPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spositescriptpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantCdnOrigin.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotenantcdnorigin",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantIdentityMap.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotenantidentitymap",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantIdentityMappingGroup.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotenantidentitymappinggroup",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantIdentityMappingUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotenantidentitymappinguser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTenantRestrictedSearchAllowedList.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotenantrestrictedsearchallowedlist",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTheme.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spotheme",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Add-SPOUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/add-spouser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Apply-SPOFontPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/apply-spofontpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Approve-SPOTenantServicePrincipalPermissionGrant.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/approve-spotenantserviceprincipalpermissiongrant",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Approve-SPOTenantServicePrincipalPermissionRequest.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/approve-spotenantserviceprincipalpermissionrequest",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Clear-SPOTenantPreAuthSettings.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/clear-spotenantpreauthsettings",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Connect-SPOService.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/connect-sposervice",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/ConvertTo-SPOMigrationEncryptedPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/convertto-spomigrationencryptedpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/ConvertTo-SPOMigrationTargetedPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/convertto-spomigrationtargetedpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Copy-SPOPersonalSitePage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/copy-spopersonalsitepage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Deny-SPOTenantServicePrincipalPermissionRequest.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/deny-spotenantserviceprincipalpermissionrequest",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Disable-SPOTenantServicePrincipal.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/disable-spotenantserviceprincipal",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Disconnect-SPOService.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/disconnect-sposervice",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Enable-SPOCommSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/enable-spocommsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Enable-SPOTenantServicePrincipal.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/enable-spotenantserviceprincipal",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Export-SPODataAccessGovernanceInsight.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/export-spodataaccessgovernanceinsight",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Export-SPOQueryLogs.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/export-spoquerylogs",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Export-SPOSites.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/export-sposites",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Export-SPOUserInfo.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/export-spouserinfo",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Export-SPOUserProfile.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/export-spouserprofile",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-FileSensitivityLabelInfo.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-filesensitivitylabelinfo",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppBillingPolicies.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoappbillingpolicies",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppErrors.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoapperrors",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppInfo.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoappinfo",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOApplication.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoapplication",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAuditDataCollectionStatusForActivityInsights.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoauditdatacollectionstatusforactivityinsights",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOBlockedPageCreationContentTypeList.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoblockedpagecreationcontenttypelist",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOBrowserIdleSignOut.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spobrowseridlesignout",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOBuiltInDesignPackageVisibility.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spobuiltindesignpackagevisibility",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOBuiltInFontPackageSettings.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spobuiltinfontpackagesettings",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOBuiltInSiteTemplateSettings.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spobuiltinsitetemplatesettings",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContainer.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocontainer",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContainerType.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocontainertype",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContainerTypeConfiguration.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocontainertypeconfiguration",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContentEventEmailAddresses.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocontenteventemailaddresses",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContentSecurityPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocontentsecuritypolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCopilotAgentInsightsReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocopilotagentinsightsreport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCopilotPromoOptInStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocopilotpromooptinstatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCopilotPromoUsage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocopilotpromousage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossGeoMoveReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrossgeomovereport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossGeoMovedUsers.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrossgeomovedusers",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossGeoUsers.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrossgeousers",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantCompatibilityStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantcompatibilitystatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantGroupContentMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantgroupcontentmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantHostUrl.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenanthosturl",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantRelationship.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantrelationship",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantRelationshipByPartner.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantrelationshipbypartner",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantRelationshipByScenario.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantrelationshipbyscenario",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantSiteContentMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantsitecontentmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOCrossTenantUserContentMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spocrosstenantusercontentmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPODataAccessGovernanceInsight.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spodataaccessgovernanceinsight",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPODataEncryptionPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spodataencryptionpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPODeletedContainer.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spodeletedcontainer",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPODeletedSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spodeletedsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPODisableSpacesActivation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spodisablespacesactivation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOEnterpriseAppInsightsReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoenterpriseappinsightsreport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOExternalUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoexternaluser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOFontPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spofontpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOGeoAdministrator.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spogeoadministrator",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOGeoMoveCrossCompatibilityStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spogeomovecrosscompatibilitystatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOGeoStorageQuota.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spogeostoragequota",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOHideDefaultThemes.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spohidedefaultthemes",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOHomeSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spohomesite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOHubSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spohubsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOInformationBarriersInsightsReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoinformationbarriersinsightsreport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOInformationBarriersPolicyComplianceReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoinformationbarrierspolicycompliancereport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOIsCommSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoiscommsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOKnowledgeHubSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoknowledgehubsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOLandingSites.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spolandingsites",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOListDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spolistdesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOListFileVersionBatchDeleteJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spolistfileversionbatchdeletejobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOListFileVersionExpirationReportJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spolistfileversionexpirationreportjobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOListVersionPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spolistversionpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMalwareFile.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomalwarefile",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMalwareFileContent.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomalwarefilecontent",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMigrationJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomigrationjobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMigrationJobStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomigrationjobstatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMultiGeoCompanyAllowedDataLocation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomultigeocompanyalloweddatalocation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOMultiGeoExperience.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spomultigeoexperience",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOOrgAssetsLibrary.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoorgassetslibrary",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOOrgNewsSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoorgnewssite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOPersonalSitePageCopyProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spopersonalsitepagecopyprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOPortalLaunchWaves.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spoportallaunchwaves",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOPublicCdnOrigins.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spopubliccdnorigins",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPORestrictedAccessForSitesInsights.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sporestrictedaccessforsitesinsights",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPORestrictedContentDiscoverabilityReport.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sporestrictedcontentdiscoverabilityreport",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPORestrictedSiteCreation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sporestrictedsitecreation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationAppRegistrations.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sposerviceprioritizationappregistrations",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOServicePrioritizationBillingPolicies.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sposerviceprioritizationbillingpolicies",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-sposite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteCollectionAppCatalogs.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositecollectionappcatalogs",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteContentMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositecontentmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDataEncryptionPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedataencryptionpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDesignRights.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedesignrights",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDesignRun.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedesignrun",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDesignRunStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedesignrunstatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteDesignTask.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositedesigntask",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteFileVersionBatchDeleteJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositefileversionbatchdeletejobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteFileVersionExpirationReportJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositefileversionexpirationreportjobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteGroup.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositegroup",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSitePages.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositepages",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteRenameState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositerenamestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteReview.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositereview",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteScript.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositescript",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteScriptFromList.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositescriptfromlist",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteScriptFromWeb.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositescriptfromweb",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteScriptPackageFile.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositescriptpackagefile",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteScriptPackageFromWeb.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositescriptpackagefromweb",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteUserInvitations.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositeuserinvitations",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteVersionPolicyJobProgress.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spositeversionpolicyjobprogress",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOStorageEntity.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spostorageentity",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOStructuralNavigationCacheSiteState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spostructuralnavigationcachesitestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOStructuralNavigationCacheWebState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spostructuralnavigationcachewebstate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTemporarilyDisableAppBar.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotemporarilydisableappbar",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenant.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenant",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnEnabled.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantcdnenabled",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnOrigins.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantcdnorigins",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantCdnPolicies.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantcdnpolicies",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantContentTypeReplicationParameters.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantcontenttypereplicationparameters",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantIdentityMappingGroup.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantidentitymappinggroup",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantIdentityMappingUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantidentitymappinguser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantLogEntry.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantlogentry",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantLogLastAvailableTimeInUtc.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantloglastavailabletimeinutc",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantPreAuthSettings.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantpreauthsettings",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantRenameSitePrioritization.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantrenamesiteprioritization",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantRenameStatus.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantrenamestatus",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantRestrictedSearchAllowedList.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantrestrictedsearchallowedlist",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantRestrictedSearchMode.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantrestrictedsearchmode",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantServicePrincipalPermissionGrants.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantserviceprincipalpermissiongrants",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantServicePrincipalPermissionRequests.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantserviceprincipalpermissionrequests",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantSyncClientRestriction.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenantsyncclientrestriction",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTenantTaxonomyReplicationParameters.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotenanttaxonomyreplicationparameters",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOTheme.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spotheme",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUnifiedGroup.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spounifiedgroup",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUnifiedGroupMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spounifiedgroupmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spouser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUserAndContentMoveState.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spouserandcontentmovestate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOUserOneDriveLocation.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spouseronedrivelocation",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Get-SPOWebTemplate.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/get-spowebtemplate",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Grant-SPOHubSiteRights.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/grant-spohubsiterights",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Grant-SPOSiteDesignRights.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/grant-spositedesignrights",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Invoke-SPOListDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/invoke-spolistdesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Invoke-SPOMigrationEncryptUploadSubmit.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/invoke-spomigrationencryptuploadsubmit",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Invoke-SPOSiteDesign.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/invoke-spositedesign",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Invoke-SPOSiteSwap.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/invoke-spositeswap",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Invoke-SPOSiteUpgrade.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/invoke-spositeupgrade",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/",
"redirect_document_id": false
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/index.yml",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOAppBillingPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spoappbillingpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOContainerType.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spocontainertype",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOListFileVersionBatchDeleteJob.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spolistfileversionbatchdeletejob",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOListFileVersionExpirationReportJob.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spolistfileversionexpirationreportjob",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOMigrationEncryptionParameters.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spomigrationencryptionparameters",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOMigrationPackage.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spomigrationpackage",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOPortalLaunchWaves.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spoportallaunchwaves",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOPublicCdnOrigin.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spopubliccdnorigin",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSdnProvider.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-sposdnprovider",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOServicePrioritizationBillingPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-sposerviceprioritizationbillingpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-sposite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSiteFileVersionBatchDeleteJob.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositefileversionbatchdeletejob",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSiteFileVersionExpirationReportJob.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositefileversionexpirationreportjob",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSiteGroup.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositegroup",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/New-SPOSiteSharingReportJob.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/new-spositesharingreportjob",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Register-SPODataEncryptionPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/register-spodataencryptionpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Register-SPOHubSite.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/register-spohubsite",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppBillingPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spoappbillingpolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOBlockedPageCreationContentType.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spoblockedpagecreationcontenttype",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOContainer.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocontainer",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOContainerType.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocontainertype",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOContainerUser.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocontaineruser",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOContentEventEmailAddresses.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocontenteventemailaddresses",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOContentSecurityPolicy.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocontentsecuritypolicy",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOCrossTenantRelationship.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spocrosstenantrelationship",
"redirect_document_id": true
},
{
"source_path": "sharepoint/sharepoint-ps/sharepoint-online/Remove-SPODataAccessGovernanceInsight.md",
"redirect_url": "/powershell/module/microsoft.online.sharepoint.powershell/remove-spodataaccessgovernanceinsight",