User Profile
FadySamy
Copper Contributor
Joined Jun 26, 2018
User Widgets
Recent Discussions
Re: Adding connected organizations with powershell
philtyrich I apologize for any misunderstanding. I meant MSOnline, not the Microsoft Graph API. Could you please check this article as well? It might provide some helpful information. https://learn.microsoft.com/en-us/graph/api/entitlementmanagement-post-connectedorganizations?view=graph-rest-1.0&tabs=http#example-2-create-a-connected-organization-with-an-identitysource-based-on-a-tenant-id Regarding the script, you’re right. Please check this one: Connect-MgGraph -Scopes "Policy.ReadWrite.EntitlementManagement", "Directory.Read.All" $tenantId = "external-tenant-guid" (Must be the GUID, not domain) $body = @{ displayName = "External Organization Name" description = "Description" identitySources = @(@{ "@odata.type" = "#microsoft.graph.tenantIdentitySource" tenantId = $tenantId }) state = "proposed" } New-MgIdentityGovernanceEntitlementManagementConnectedOrganization -BodyParameter $body Thanks, Fady56Views0likes0CommentsRe: Adding connected organizations with powershell
philtyrich, Hi, it appears that this is a known issue when using Azure AD or MSOnline PowerShell modules, which will be discontinued. Instead, please use the Microsoft Graph API. Please check this article: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.identity.signins/update-mgpolicycrosstenantaccesspolicypartner?view=graph-powershell-1.0 This could also be helpful. Perhaps it requires updates. Before making any changes, it’s best to test it first: Install-Module Microsoft.Graph -Scope CurrentUser Import-Module Microsoft.Graph Connect-MgGraph -Scopes "Policy.ReadWrite.CrossTenantAccess", "Directory.Read.All" #Set up the tenantId first (resolve via Get-MgDomain) $tenantId = "external-tenant-guid" (Must be the GUID) #Add the org $params = @{ B2bCollaborationInbound = @{ isEnabled = $true } B2bCollaborationOutbound = @{ isEnabled = $true } IdentitySynchronization = @{ isEnabled = $false } InboundTrust = @{ isCompliantDeviceAccepted = $false isHybridAzureADJoinedDeviceAccepted = $false isMfaAccepted = $false } } Update-MgPolicyCrossTenantAccessPolicyPartner -TenantId $tenantId -BodyParameter $params72Views0likes2CommentsRe: Cloud PBX - Auto Attendant - Transfer to External number
Austin Ayers It is not supported yet by Microsoft. Workaround: 1. Create a service account with teams-only and then transfer calls to PSTN number from teams client settings for this account. 2. From AA configuration, forward call to the service account. Regards, Fady3.3KViews0likes0CommentsRe: Users migrated to teams 3 days ago still don't have dial pad.
Ron Prague Please make sure that users have AllowCalling policy enabled, are on Teams-Only policy, have voice routing policy. here are the powershell commands: Grant-CsTeamsCallingPolicy -PolicyName Tag:AllowCalling -Identity xyz@xyz.com Grant-CsTeamsUpgradePolicy -PolicyName UpgradeToTeams -Identity xyz@xyz.com Grant-CsOnlineVoiceRoutingPolicy -Identity "xyz@xyz.com" -PolicyName "XYZ" After that wait some time and restart teams client.3.1KViews0likes0CommentsAny workaround for Extension dialing from cloud auto attendant
Hello, As you know that extension dialing from cloud auto attendant is not working as it is not a feature yet, but Microsoft has this feature in their road-map. My question is does anyone find any workaround to make it works? What about Auto Attendant in Exchange Online. I know that Exchange Online Unified Messaging will be retiring in February 2020, but until that date does it work with Microsoft Teams direct routing? Thanks in advance! Fady1.5KViews0likes2CommentsRe: TeamsOnly users appear offline into Skype for business users
adam deltinger Currently we have users with skype onpremise and users with teamsonly, and even pgrade all users to teamsonly, the issue is still with the external (federated) Skype users. All Skype users internal and external (federated) see users with teamsonly policy Offline!5KViews0likes6Comments
Recent Blog Articles
No content to show