Enter-O365Session.ps1

something exciting

Some information about the exciting thing

Table of contents generated with markdown-toc


Script

<#
Enter-O365Session.ps1
#>

# Create a secure string for the password
$Username = Read-Host "Enter Username"
$Password = Read-Host "Enter Password" -AsSecureString

# Create the PSCredential object
$Credentials = New-Object System.Management.Automation.PSCredential($Username, $Password)
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credentials -Authentication Basic -AllowRedirection
Import-PSSession $Session

# Display Host Message
Write-Error -Message "You are now connected to Exchange 365" -Verbose
Write-Error -Message "Username:- $Username"

# Separate Command required to end the Session
# Get-PSSession | Remove-PSSession

Back to Top


Download

Please feel free to copy parts of the script or if you would like to download the entire script, simple click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.


Report Issues

You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.

Issue


Back to Top