netplwiz  - advanced users management in Windows7

---

disk cleanup (cleanmgr.exe)

windows 2008R2:

problem: winsxs folder too much big 

resolution ( cleaning windows updates rep)

1) https://technet.microsoft.com/en-us/library/ff630161%28WS.10%29.aspx

2) install :

Update for Windows Server 2008 R2 x64 Edition (KB2852386)


links:

solarwinds free tools

  MS Exchange - Powershell  

To get list of users ordered by Primary Smtp Address:

Get-Mailbox | Format-Table Name,*SMTP* > c:\list.cvs

 

How To Find Users With Specific Email Addresses

To find user with specific SMTP  address (this is useful when you want to know how many users using a specific domain).

get-recipient -ResultSize unlimited | where {$_.emailaddresses -match “test.local“} | select name,emailaddresses

If you need to find just an email address add name@test.local to the line.

get-recipient -ResultSize unlimited | where {$_.emailaddresses -match “test@test.local“} | select name,emailaddresses > c:\out.txt

 List users with email forwarding enabled

Ex2007/2010

(exchangepedia.com)

Get-Mailbox -Filter {ForwardingAddress -ne $null} | ft Name,ForwardingAddress,DeliverToMailboxAndForward -Autosize


To Get Total size of All mail-boxes:

Get-MailboxStatistics -server servername | ft

displayname,totalitemsize

***

Make a Free Website with Yola.