[O365] Find All Office 365 Group Owners using PowerShell #Connect to Exchange Online Connect-ExchangeOnline -ShowBanner:$False #Get All Office 365 Groups $GroupData = @() $Groups = Get-UnifiedGroup -ResultSize Unlimited -SortBy Name #Loop through each Group $Groups | Foreach-Object { #Get Group Owners $GroupOwners = Get-UnifiedGroupLinks -LinkType Owners -Identity $_.Id | Select DisplayName, PrimarySmtpAddress $GroupData += New-Object -TypeName PSObject -Property @{ GroupName = $_.Alias GroupEmail = $_.PrimarySmtpAddress OwnerName = $GroupOwners.DisplayName -join "; " OwnerIDs = $GroupOwners.PrimarySmtpAddress -join "; " SharePointSiteUrl = $_.SharePointSiteUrl -join "; " DisplayName = $_.DisplayName -join "; " } } #Get Groups Data #$GroupData $GroupData | Export-Csv "C:\Temp\GroupOwners.csv" -NoTypeInformation #Disconnect Exchange Onli
[O365] Bloquear globalmente la compra de autoservicio en Microsoft 365 | Configuración única, protección permanente
Para deshabilitar los registros de autoservicio de Microsoft en Microsoft 365, simplemente puede ejecutar el siguiente cmdlet. Set-MsolCompanySettings -AllowAdHocSubscriptions $false Nota: Debe instalar el módulo MSOnline antes de ejecutar el cmdlet. Para instalar y conectarse a MSolService, ejecute el siguiente código. Install-Module MSOnline Import-Module –Name MSOnline Connect-MsolService Para comprobar el estado del autoservicio en todo el inquilino, ejecute el siguiente cmdlet. Set-MsolCompanySettings -AllowAdHocSubscriptions $false Si el valor se establece en $true , la capacidad de autoservicio está habilitada. Si el valor se establece en $false , la prueba y la compra de autoservicio están deshabilitadas. En cualquier momento, los administradores tienen la flexibilidad de habilitar el registro de autoservicio según los requisitos de la organización. Para habilitarlo, puede utilizar el siguiente cmdlet: 1 Set-MsolCompanySettings -AllowAdHocSubscriptions $