Skip to content

Commit 4be3e21

Browse files
authored
It is possible to create modern sites without a Group
Since a few months, it is possible to create a modern teamsite which is not connected to a Group.
1 parent b55629f commit 4be3e21

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/solution-guidance/modern-experience-customizations-provisioning-sites.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,21 @@ Connect-PnPOnline -Url https://contoso-admin.sharepoint.com
169169
# Create a new modern team site
170170
New-PnPSite -Type Team -Title "Awesome Group" -Description "Awesome Group" -Alias "awesome-group"
171171
```
172+
#### Provision a modern teamsite using SharePoint Online Management Shell or PnP PowerShell
172173

173-
> [!NOTE]
174-
> There is currently no support to provision "modern" team sites using [SharePoint Online Management Shell](https://www.microsoft.com/en-us/download/details.aspx?id=35588).
174+
It is now also possible to create a modern site which is not connected to a Group using PowerShell. Either by using the PnP PowerShell cmdlets or the SharePoint Online Management Shell.
175+
176+
```powershell
177+
$title = "Awesome ModernTeamsite"
178+
$url = "https://contoso.sharepoint.com/sites/awesomemodernteamsite"
179+
180+
181+
// SharePoint Online Management Shell
182+
New-SPOSite -Title $_title -Url $_url -Owner $owner -StorageQuota 512 -Template "STS#3"
183+
184+
// PnP
185+
New-PnPTenantSite -Url $_url -Description $_title -Title $_title -Template STS#3 -Owner $owner
186+
```
175187

176188
## Provisioning "modern" communication sites
177189

0 commit comments

Comments
 (0)