To List the deleted folder sizes for users mailboxes run the powershell command below : Get-Mailbox –Server ServerName -ResultSize Unlimited | Get-MailboxFolderStatistics -FolderScope DeletedItems |…
To Export a List of Windows Services which are set to auto in PowerShell run the following command :- get-WmiObject Win32_service | Where-Object {$_.Startmode -contains…