PortiBlog

Using MFA enabled accounts in PowerShell scripts

22 oktober 2017

The use of multi-factor authentication (MFA) is growing by the day. More and more customers are enabling MFA for administrator accounts to protect their cloud environment a little bit more. But that also might affect your PowerShell scripts. In this post I want to point out how to deal with MFA enabled accounts in your PowerShell script.

Connecting to services

Before you can use cmdlets from modules like Azure PowerShell, Azure Active Directory and SharePoint Online you need to connect to these services first. Each of these services has its own “login” cmdlet. For example:

# Azure PowerShell
Login-AzureRMAccount

# Azure AD
Connect-AzureAD

# SharePoint Online
Connect-SPOService -Url https://octavie365-admin.sharepoint.com

These cmdlets also have a parameter Credential and you can pass a PSCredential object. This is handy when you need  to connect to multple services with the same credentials. One way to achieve this is to ask the username and password from the script.

image

$AdminUsername = Read-Host -Prompt "Azure/Office 365 Admin User Account"
$AdminPassword = Read-Host -Prompt "Password" -AsSecureString

$adminCredentials = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $AdminUsername, $AdminPassword

Login-AzureRmAccount -Credential $adminCredentials
Connect-AzureAD -Credential $adminCredentials

And of course, you can also use

$adminCredentials = Get-Credential

to get the Windows PowerShell login popup:

image

 

Windows Credential Manager

If you don’t way to ask for credentials in the script, you can also use the Windows Credential Manager. You need to install the module CredentialManager for this.

https://www.powershellgallery.com/packages/CredentialManager/2.0

( I am not going to describe how to set this all up. Plenty of articles available, such as https://www.petri.com/managing-usernames-passwords-powershell-sharepoint-online )

Once set up, your script can look like this:

# Get credentials from the Credential Manager
$adminCredentials = Get-StoredCredentials -Target "MFADEMO"

Login-AzureRmAccount -Credential $adminCredentials

What about MFA enabled accounts?

In spite of all the advanced scripting above, it simply does not work with MFA enabled accounts. You will see errors like this

Login-AzureRmAccount : AADSTS50076: Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access 'bla-bla'.

Connect-SPOService : The sign-in name or password does not match one in the Microsoft account system.

The only solution available today (that I know of) is to use the cmdlets to connect to your service without the parameter Credential. This will show you the Sign in to your account popup of that service and this login window has the support for MFA. For example:

image

image

image

Does this mean you have to throw all your scripts into the recycle bin? No, you are going to accept and embrace this.

It is what it is.

 

You can add a switch parameter to your own script to indicate MFA should be used. With that you can have a if-then-else construction.

[CMDLetBinding()]
Param(
# Tenant Name
[Parameter(Mandatory=$true,HelpMessage="Your tenant name. E.g. Mavention or Contoso")]
[String]
$TenantName,
# Use MFA login
[Switch]$MFA
)

$urlSPOAdmin = "https://$($TenantName)-admin.sharepoint.com"

if ( $MFA ) {
Login-AzureRmAccount
Connect-SPOService -Url $urlSPOAdmin
}
else {
$AdminUsername = Read-Host -Prompt "Azure Admin User Account"
$AdminPassword = Read-Host -Prompt "Password" -AsSecureString

$adminCredentials = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $AdminUsername, $AdminPassword

Login-AzureRmAccount -Credential $adminCredentials
Connect-SPOService -Url $urlSPOAdmin -Credential $adminCredentials
}

Summary

As more and more customers are enabling multi-factor authentication (MFA) for administrator accounts, your PowerShell scripts may not work anymore. In case of MFA enabled accounts, you have to use the cmdlets to connect to your service without the parameter Credential. The Sign-In window has support for MFA.

 

Originally posted at : http://blog.octavie.nl/index.php/2017/10/22/using-mfa-enabled-accounts-in-powershell-scripts

Submit a comment