Created
September 18, 2022 17:57
Get-SPOSite -Limit All -Template "TEAMCHANNEL#1" | Select Title,Url,TeamsChannelType | Where-Object { $_.TeamsChannelType -eq "PrivateChannel" }
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Syntax | |
Get-SPOSite -Limit All -Template "TEAMCHANNEL#1" | Select Title,Url,TeamsChannelType | Where-Object { $_.TeamsChannelType -eq "PrivateChannel" } | |
#Syntax | |
Get-SPOSite -Limit All -Template "TEAMCHANNEL#1" | Select Title,Url,TeamsChannelType | Where-Object { $_.TeamsChannelType -eq "PrivateChannel" } | Export-Csv -NoTypeInformation -Encoding UTF8 -path "C:\temp\<ファイル名>.csv" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment