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
Adding sovereign cloud examples and update environment tables
- Updated environment output tables with BleuCloud, DelosCloud, and GovSGCloud
- Added Example 12: connecting to a sovereign cloud with a custom application
- Added Example 13: disabling WAM when authentication hangs in sovereign clouds
- Added DisableLoginByWAM example to Set-MgGraphOption
- Renumbered existing examples to accommodate new entries
Sovereign cloud environments (BleuCloud, DelosCloud, GovSGCloud) require a custom application registration. You cannot use the default Microsoft Graph PowerShell application in these environments. When registering your application, add an additional redirect URI of `ms-appx-web://Microsoft.AAD.BrokerPlugin/<YOUR_APP_CLIENT_ID>` to support WAM broker-based authentication. Requires Microsoft.Graph.Authentication v2.36.1 or later.
86
+
87
+
### Example 13: Connecting to a sovereign cloud when WAM authentication hangs
If the authentication popup hangs or times out when connecting to a sovereign cloud (for example, from a jumpbox), WAM broker-based login may not work in that environment. Disable WAM to use interactive browser sign-in instead. You only need to run `Set-MgGraphOption -DisableLoginByWAM $true` once; the setting persists across sessions.
93
+
94
+
### Example 14: Connecting to an environment as a different identity
If WAM broker-based authentication hangs or times out when connecting to a sovereign cloud environment (such as BleuCloud, DelosCloud, or GovSGCloud), disable WAM to fall back to interactive browser sign-in. This can occur when authenticating from environments like jumpboxes. The setting persists across PowerShell sessions.
0 commit comments