Download and install Office365 PowerShell module – Update

Hello,

Just a quick update about my previous blogpost, the Windows Azure Active Directory PowerShell Module download URL changed with the new version of the module. You now may use :

Windows Azure Active Directory PowerShell Module

This gives us :

$WAADUrl = "https://bposast.vo.msecnd.net/MSOPMW/8000.119/amd64/AdministrationConfig-FR.msi" #Msol Module
$MsolUrl = "http://download.microsoft.com/download/5/0/1/5017D39B-8E29-48C8-91A8-8D0E4968E6D4/en/msoidcli_64.msi" #Sign in assistant

Start-BitsTransfer -Source $MsolUrl -Description "Microsoft Online services Signin Assistant" -Destination $env:temp -DisplayName "Microsoft Online Services Signin Assistant"
Start-BitsTransfer -Source $WAADUrl -Description "Windows Azure Active Directory" -Destination $env:temp -DisplayName "Windows Azure Active Directory"

Start-Process -FilePath msiexec.exe -ArgumentList "/i $env:temp$(Split-Path $MsolUrl -Leaf) /quiet /passive"
Start-Process -FilePath msiexec.exe -ArgumentList "/i $env:temp$(Split-Path $WAADUrl -Leaf) /quiet /passive"

Remove-Item -Path $env:temp$(Split-Path $MsolUrl -Leaf)
Remove-Item -Path $env:temp$(Split-Path $WAADUrl -Leaf)

Note : To update a previous version of the module, you need to uninstall it, and do a fresh install.

 

0 thoughts on “Download and install Office365 PowerShell module – Update

  1. Pingback: Install SharePoint Online PowerShell module with PowerShell - It For DummiesIt For Dummies

  2. Pingback: Install Lync Online PowerShell module with PowerShell - It For DummiesIt For Dummies

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.