Skip to content

Instantly share code, notes, and snippets.

View rdtechie's full-sized avatar
🐰
Happy Coding!

Richard Diphoorn rdtechie

🐰
Happy Coding!
View GitHub Profile
######################################################################################################
######################################################################################################
##
## Script Naam : Aanmaken-Tenant-Gebruiker-AD-Exchange.ps1
##
## Script Versie : 1.0
##
## Script Auteur : Richard Diphoorn
##
## Script History: Versie Datum Omschrijving
######################################################################################################
######################################################################################################
##
## Script Naam : Aanmaken-Tenant-AD-Exchange.ps1
##
## Script Versie : 1.0
##
## Script Auteur : Richard Diphoorn
##
## Script History: Versie Datum Omschrijving
Mount-DiskImage C:\VHD\VirtualMachine.VHDX
Mount-DiskImage C:\ISO\MYCDFile.ISO
@rdtechie
rdtechie / Connect-Exchange-Online.ps1
Last active August 29, 2015 13:56
PowerShell sessie opzetten met Exchange Online
$Credentials = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Credentials -Authentication Basic -AllowRedirection
Import-PSSession $Session