Posts in Powershell

Latest Comments

No comments to show.

[Powershell] Automating SFTP Jobs

DISCUSSION I’ve been working with a Managed File Transfer (MFT) tool to download files from a remote[…]

[Powershell] Check Windows Services

Here’s how you can check if a service is running in PowerShell. I am using Threat Locker[…]

[Powershell] Exchange 365 Mailbox Hold Troubleshooting

DISCUSSION A common challenge in managing catch-all mailboxes involves handling substantial email volumes, often reaching thousands of[…]

[Powershell] Inactive Mailboxes

Look for inactive mailboxes in your exchange environment (Get-Mailbox -IncludeInactiveMailbox | where IsInactiveMailbox -eq "True") | Get-Mailbox[…]

[Powershell] – Deleted Items Folder

Get a count your Recovery Items inbox Get-MailboxFolderStatistics youremail@address.com -FolderScope RecoverableItems | fl Name,FolderAndSubfolderSize,ItemsInFolderAndSubfolders

[Powershell] Get Exchange FolderID

Connect to Exchange Online Powershell Connect-ExchangeOnline Run the following Powershell script to get your list of FolderID[…]