Skip to content

Instantly share code, notes, and snippets.

@itpropro
Created March 4, 2016 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itpropro/e2074e84eef3ff317739 to your computer and use it in GitHub Desktop.
Save itpropro/e2074e84eef3ff317739 to your computer and use it in GitHub Desktop.
$message = "The size of your desktop folder exceeds 500MB.`r`nThis can cause delays at logon and logoff.`r`n`r`nGreetings from your IT-Department"
if ([Math]::Truncate((Get-ChildItem "$env:USERPROFILE\Desktop" -Recurse|Measure-Object -property Length -sum).Sum / 1MB) -gt 500){[System.Windows.Forms.MessageBox]::Show($message)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment