You had me @ stfu

Snippets

›
 A few PowerShell snippets I use a bit... # Show Services that are set to Automatic that are not running: Get-WmiObject win32_service |?{ $_...

Restart Event IDs

›
I can never remember what these Event IDs are, so it's time to record them here. Event ID Description 1074 Logged when an app (ex: W...

EWS & PowerShell

›
A bit of stuff using the EWS managed API, which can be downloaded here: http://www.microsoft.com/en-us/download/details.aspx?id=35371 Not...

Exchange Database statistics

›
DB sizes with whitespace: Get-MailboxDatabase -Status | sort name | select name,@{Name='DB Size (Gb)';Expression={$_.DatabaseSize....

Functions 1

›
############## function to add append to export-csv ######################### function Export-CSV { [CmdletBinding(DefaultParameterSetNam...

PS profile variables & transcript

›
$Global:scripts = "C:\Users\me\Documents\scripts" $Global:reports = "C:\Users\me\Documents\Reports" [string]$date = g...

Snippets for PsObject

›
This one pulls PrimarySMTP from ProxyAddresses: ipmo ActiveDirectory $PAS = Get-ADUser -Filter * -properties ProxyAddresses | select -Ex...

O365 - resuming move requests

›
For resuming move requests outside of business hours Picks up failed move requests too (if PAW is configured) -  https://blogs.technet.mic...

O365 - suspending move requests

›
For suspending move requests during business hours (only those below 94%) Bear these in mind: The script has to produce a move request s...

Office 365 move requests - random incremental sync interval

›
EMS: There are two random number generation processes here. Firstly, a random number to change the sort order of the move requests (this i...
‹
›
Home
View web version
Powered by Blogger.