Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save h2dcomputers/d1670c0ae8d274c1a81ef65a216d6158 to your computer and use it in GitHub Desktop.

Select an option

Save h2dcomputers/d1670c0ae8d274c1a81ef65a216d6158 to your computer and use it in GitHub Desktop.
Open PowerShell as Admin
Allow for the script to be ran
# Set-ExecutionPolicy RemoteSigned -Scope LocalMachine -Force
Install NuGet and PowerShellGet
# Install-PackageProvider -Name NuGet -Force
# Install-Module -Name PowerShellGet -Force -AllowClobber
Install Exchange powershell module as current user
# Install-Module -Name ExchangeOnlineManagement -Scope CurrentUser -Force -AllowClobber
Verify it is installed
# Get-InstalledModule ExchangeOnlineManagement
Connect to Exchange with Exchange Admin or GLobal Admin account
# Connect-ExchangeOnline -UserPrincipalName [email protected]
Check the current setting of AutomateProcessing for user
# Get-CalendarProcessing -Identity [email protected] | fl AutomateProcessing
Set user's AutomateProcessing setting to "none"
# Set-CalendarProcessing -Identity [email protected] -AutomateProcessing None
Revert the user's AutomateProcessing setting to default
# Set-CalendarProcessing -Identity [email protected] -AutomateProcessing AutoUpdate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment