forked from pnp/custom-learning-office-365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UpdateM365lpSiteUrl.ps1
45 lines (38 loc) · 1.63 KB
/
UpdateM365lpSiteUrl.ps1
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
param([string]$TenantName,
[string]$M365LPSiteUrl)
# verify the PnP cmdlets we need are installed
if (-not (Get-Command Connect-PnPOnline -ErrorAction SilentlyContinue)) {
Write-Warning "Could not find PnP PowerShell cmdlets"
Write-Warning "Please install them and run this script again"
Write-Warning "You can install them with the following line:"
Write-Warning "`nInstall-Module PnP.PowerShell`n"
break
}
# Check if tenant name was passed in
if ([string]::IsNullOrWhitespace($TenantName)) {
# No TenantName was passed, prompt the user
$TenantName = Read-Host "Please enter your tenant name: (contoso) "
}
$AdminURL = "https://$TenantName.sharepoint.com"
# Check if M365 LP Site Url was passed in
if (!([system.uri]::IsWellFormedUriString($M365LPSiteUrl, [System.UriKind]::Absolute))) {
Write-Host "$M365LPSiteUrl is not a valid URL." -BackgroundColor Black -ForegroundColor Red
Clear-Variable M365LPSiteUrl
}
if ([string]::IsNullOrWhitespace($M365LPSiteUrl)) {
# No Site Collection URL was passed, prompt the user
$M365LPSiteUrl = Read-Host "Please enter the URL of your Microsoft 365 learning pathways site collection: ($AdminURL/sites/M365LP)"
}
# Connect to Admin site.
# Todo: Differentiate between valid $adminurl and authentication error (bad password or no access)
try {
Connect-PnPOnline -Url $AdminURL -UseWebLogin
}
catch {
Write-Warning "Failed to authenticate to $AdminURL"
Write-Warning $_
break
}
Set-PnPStorageEntity -Key MicrosoftCustomLearningSite -Value $M365LPSiteUrl -Description "Microsoft 365 learning pathways Site Collection"
Get-PnPStorageEntity -Key MicrosoftCustomLearningSite
Disconnect-PnPOnline