Skip to content

Windows Integrated auth

Jiri Formacek edited this page Apr 7, 2026 · 2 revisions

Module supports Windows Integrated authentication for environments where it can be used to authenticate with Microsoft Entra ID, such as some federated or Seamless SSO scenarios. This flow is environment-dependent and should be validated against the tenant's sign-in configuration before being recommended for general use.
Sample below shows this in action:

New-AadAuthenticationFactory `
-TenantId mytenant.com `
-DefaultScopes 'https://graph.microsoft.com/.default' `
-AuthMode WIA `
| Get-AadToken `
| Test-AadToken -PayloadOnly

Clone this wiki locally