Office 365 exams preparation materials
General.
Office 365 Service Descriptions
Exam 347 page (Getting ready videos ch9)
Exam 346 page (Getting ready videos ch9)
DNS.
SenderID
Network.
NAT support, Performance Tuning, DNS Records (Windows Based), URLs and IP Ranges, SFB Network Setup,
Calculators:
SFB (additional reference), Exchange Client, Sharepoint (kinda), OneDrive, ADFS
Misc.
RMS Sharing Quick Start, Configure Apps for RMS, SFB Hybrid, Office Deployment Tool for Click-to-Run
Troubleshooting.
Connectivity Analyzer, Client Performance Analyzer, NetMon 3.4, Message Analyzer 1.0, Office 365 Troubleshooter, Diagnostics Tools, Free/Busy Hybeis Troubleshooter,
Powershell.
Azure AD Powershell (Prerequisite for O365 Powershell Modules)(examples)(download)
Azure RMS Powershell (download)
Sharepoint Powershell (download)
#Don’t forget Execution Policy
#Office365
Connect-MsolService
#Exchange Online
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential (Get-Credential) -Authentication Basic -AllowRedirection
Import-PSSession $session
#RMS with basic setup
Connect-aadrmservice
Set-IRMConfiguration -RMSOnlineKeySharingLocation "https://sp-rms.eu.aadrm.com/TenantManagement/ServicePartner.svc"
Import-RMSTrustedPublishingDomain -RMSOnline -name "RMS Online"
Set-IRMConfiguration –InternalLicensingEnabled $true
Test-IRMConfiguration –RMSOnline
#SFB
$session = New-CsOnlineSession -Credential (Get-Credential)
Import-PSSession $session
#Sharepoint
Connect-SPOService -Url https://COMPANYNAME-admin.sharepoint.com -Credential (Get-Credential)