Last active
November 6, 2025 18:41
-
-
Save h2dcomputers/d1670c0ae8d274c1a81ef65a216d6158 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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