List individual Calendar Permissions
Get-MailboxFolderPermission username:\calendar
List Calendar Permissions for all users
Get-Mailbox | ForEach-Object {Get-MailboxFolderPermission $_”:\calendar”} | Select Identity,
40 views
If you have a text file with a list of User Principal Names (UPNs) that you want to change, you
69 views
In this example, we are changing from E3 to E5 licences for a list of users
Connect to your Microsoft 365
133 views
Open PowerShell and prepare for installation
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserSet-PSRepository -Name PSGallery -InstallationPolicy Trusted
Ensure the following PowerShell modules are installed.
#
95 views
To grant a user full access to another mailbox in Office 365 through Outlook and Outlook Web App, follow these
30 views
List all members for a Distribution group
get-DistributionGroupMember -Identity "Distribution Group name"
Add All members to a Specific Distribution group
get-mailbox | foreach-object
29 views
Using PowerShell log into Office 365
Connect to Azure AD using the following commands
$msolcred = get-credential
connect-msolservice -credential $msolcred
Run the following PowerShell
27 views
Connect to clients Office 365 via Powershell
Copy and paste the following into Powershell console
$mailboxes=get-mailbox –resultSize unlimited
$rules = $mailboxes | foreach
29 views
Assign eDiscovery permissions in the Security & Compliance Center
1. Go to https://protection.office.com.
2. Sign in using your work or school
29 views
Open PowerShell
The Exchange Online Management module is required.Run the following commands to install as required
Install-Module -Name ExchangeOnlineManagementImport-Module ExchangeOnlineManagement
To start accessing
38 views
Obtain current settings
Get-OrganizationConfig | Format-List *quota*
To change Settings
Set-OrganizationConfig -DefaultPublicFolderProhibitPostQuota 50GB -DefaultPublicFolderIssueWarningQuota 45GB
Default Values
DefaultPublicFolderIssueWarningQuota : 1.7 GB (1,825,361,920 bytes)
DefaultPublicFolderProhibitPostQuota : 2
28 views
When you send a message as another user or on behalf of the user, the sent message isn't saved to
27 views
Log into Office 365 via PowerShell
Run the following command to set Language to English (Australia) and Time zone to +10
45 views
Run this command to see a list of available offline mailboxes
Get-Mailbox -InactiveMailboxOnly | Format-List Name,DistinguishedName,ExchangeGuid,PrimarySmtpAddress
Command to create mailbox using disconnected
41 views
This issue occurs when the receiver’s email client is unable to interpret a message sent from Microsoft Outlook in the
30 views