qnd:sharepoint

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
qnd:sharepoint [2022/09/28 16:33] mguptonqnd:sharepoint [2022/11/04 13:34] (current) mgupton
Line 5: Line 5:
 ====== Sharepoint Migration Tool/SPMT Report Packer ====== ====== Sharepoint Migration Tool/SPMT Report Packer ======
   * #powershell   * #powershell
 +  * Report folder: ''%appdata%\Microsoft\MigrationTool\<domain-name>''
  
 +This is a quick-n-dirty script to collect all the reports from SPMT and package it up as a ZIP archive. The script is designed to be ran in the root of the SPMT report folder, ''%appdata%\Microsoft\MigrationTool\<domain-name>''.
 <code powershell> <code powershell>
 $jobs = @{} $jobs = @{}
Line 48: Line 50:
 } }
 </code> </code>
 +
 +====== Sharepoint Online ======
 +===== Assorted Things =====
 +  * One way to prevent a redirect (on pages that auto-redirect) if you need to get to the page is to add the stay=true URL parameter to the end of the site URL.
 +
 +===== Deleting Redirect URL =====
 +When a site is renamed the redirect URL needs to be deleted if you want to create a new site with the name previously used by the renamed site.
 +<code powershell>
 +# List all redirect URLs
 +Get-SPOSite -Template REDIRECTSITE#0
 +
 +# Delete a redirect URL
 +Remove-SPOSite -Identity <redirect URL>
 +</code>
 +
 +
 +  * [[https://learn.microsoft.com/en-us/answers/questions/727371/how-to-change-a-team-site-into-a-communication-sit.html]]
 +
 +===== Some Handy Management Commands =====
 +  * [[https://www.enjoysharepoint.com/powershell-sharepoint-commands/]]
 +
  
  • qnd/sharepoint.1664382786.txt.gz
  • Last modified: 2022/09/28 16:33
  • by mgupton