Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 2.28 KB

Add-CIPPSharePointSite.md

File metadata and controls

41 lines (33 loc) · 2.28 KB

Add-CIPPSharePointSite

SYNOPSIS

Adds a new SharePoint site to the specified customer tenant.

DESCRIPTION

The Add-CIPPSharePointSite function creates a new SharePoint site with the specified parameters. It supports different site designs and templates.

PARAMETERS

-CustomerTenantID

Foo Foo
The ID of the customer tenant where the SharePoint site will be added. This parameter is mandatory.

-DisplayName

Foo Foo
The display name of the SharePoint site. This parameter is mandatory.

-Description

Foo Foo
The description of the SharePoint site. This parameter is mandatory.

-Owner

Foo Foo
The owner of the SharePoint site. Should be a valid user principal name (UPN). This parameter is mandatory.

-SiteDesign

Foo Foo Foo
The design of the SharePoint site. Valid values are 'Topic', 'Showcase', 'Blank', and 'Custom'. The default value is 'Showcase'. This parameter is optional.

-TemplateName

Foo Foo Foo
The template of the SharePoint site. Valid values are 'Communication' and 'Team'. The default value is 'Communication'. This parameter is optional.

EXAMPLE 1

PS > Add-CIPPSharePointSite -CustomerTenantID "166cc908-10b2-405f-a00b-03006c430c9c" -DisplayName "Project Site" -Description "Site for project collaboration" -Owner "owner@domain.com"

EXAMPLE 2

PS > Add-CIPPSharePointSite -CustomerTenantID "domain.com" -DisplayName "Project Site" -Description "Site for project collaboration" -Owner "owner@domain.com"