You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I am trying to create Team based on Template, using the following blog post as a reference Link
I am getting following error message:
[Error] Error checking archive status
or
[Error] Failed to remove member from team.
It's the same not matter if I use App Only permission or directly login in a popup window.
Any ideas?
`<pnp:Provisioning xmlns:pnp="http://schemas.dev.office.com/PnP/2020/02/ProvisioningSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Author="Paolo Pialorsi"
Generator="Human being"
Version="1.0"
Description="A sample Provisioning template to test Teams provisioning"
DisplayName="Teams Provisioning">
<pnp:Preferences Author="PiaSys.com" Version="1.0" Generator="Human being">
pnp:Parameters
<pnp:Parameter Key="TeamTitle">Test Team</pnp:Parameter>
<pnp:Parameter Key="TeamAlias">testteam</pnp:Parameter>
</pnp:Parameters>
</pnp:Preferences>
pnp:Teams
<pnp:Team DisplayName="{parameter:TeamTitle}"
Description="This is a Team provisioned with PnP"
Visibility="Private" Archived="false" MailNickname="{parameter:TeamAlias}">
<pnp:FunSettings AllowGiphy="true" GiphyContentRating="Strict"
AllowStickersAndMemes="true" AllowCustomMemes="true"/>
<pnp:GuestSettings AllowCreateUpdateChannels="true" AllowDeleteChannels="false"/>
<pnp:MembersSettings AllowCreateUpdateChannels="true" AllowDeleteChannels="false"
AllowAddRemoveApps="true"
AllowCreateUpdateRemoveConnectors="true"
AllowCreateUpdateRemoveTabs="false" />
<pnp:MessagingSettings AllowUserEditMessages="true" AllowUserDeleteMessages="true"
AllowOwnerDeleteMessages="false"
AllowTeamMentions="true"
AllowChannelMentions="true"/>
pnp:Security
<pnp:Owners ClearExistingItems="false">
<pnp:User UserPrincipalName="[email protected]" />
</pnp:Owners>
</pnp:Security>
pnp:Channels
<pnp:Channel DisplayName="General"
Description="General"
IsFavoriteByDefault="true">
pnp:Tabs
<pnp:Tab DisplayName="Wiki" TeamsAppId="com.microsoft.teamspace.tab.wiki"
Remove="true" />
<pnp:Tab DisplayName="OneNote"
TeamsAppId="0d820ecd-def2-4297-adad-78056cde7c78" />
</pnp:Tabs>
</pnp:Channel>
<pnp:Channel DisplayName="Private Channel"
Description="This is a private channel provisioned with PnP"
IsFavoriteByDefault="true" Private="true">
pnp:Tabs
<pnp:Tab DisplayName="Bing" TeamsAppId="com.microsoft.teamspace.tab.web">
<pnp:Configuration EntityId=""
ContentUrl="https://www.bing.com/"
WebsiteUrl="https://www.bing.com/"
RemoveUrl="" />
</pnp:Tab>
<pnp:Tab DisplayName="Wiki" TeamsAppId="com.microsoft.teamspace.tab.wiki"
Remove="true" />
</pnp:Tabs>
</pnp:Channel>
</pnp:Channels>
</pnp:Team>
</pnp:Teams>
</pnp:Provisioning>`
Beta Was this translation helpful? Give feedback.
All reactions