Get-MailboxStatistics -Server “Server Name” | Sort -Property TotalItemsize | Select DisplayName, LastLoggedOnUserAccount, ItemCount, @{expression={$_.totalitemsize.value.ToMB()};label=”Size(MB)”}, LastLogonTime, LastLogoffTime | Export-CSV mailboxes.csv
Running this command in Exchange Management Shell will generate a CSV file containing mailbox information for your Exchange server, display sizes in MB and sort the results from smallest to largest.
This command can be adapted to display information from a database rather than server, or for an individual user by changing the -Server “Server Name” parameter to;
-Database "Database Name"
or
-Identity "Username"
You can also specify other parameters to display in the CSV report;
AssociatedItemCount
DatabaseName
DeletedItemCount
DisconnectDate
DisplayName
ItemCount
LastLoggedOnUserAccount
LastLogoffTime
LastLogonTime
LegacyDN
MailboxGuid
ServerName
StorageGroupName
StorageLimitStatus
TotalDeletedItemSize
TotalItemSize
VMware Update Manager = Windows Server 2008 R2
vCenter = vCenter Server Appliance
Over the last couple of days I've been investigating an issue where VMware Update Manager tasks - "Check new notifications" and "Download patch definitions" complete OK when manually run, but sit in the task pane as "Queued" when run through the scheduled task.
Hunting around online for a solution only provided me with a way to clear the tasks, not to actually fix the issue (for reference, this is to restart the VMware vSphere Update Manager Service on the vUM server).
After investigation, the queuing issue appears to be due to permissions problems. The services on vUM were running as Local System account. I changed this to an account with permissions in vCenter - in this case the Update Manager domain account I had created - and re-ran the scheduled task. The task now completed successfully each time.
After changing the account remember to restart the service for the change to take effect.
A useful resource explaining how to enable Image Renditions in Sharepoint 2013. I used this for resizing photographs for a contact list;
http://sharepoint.rackspace.com/how-to-change-image-size-and-shape-in-sharepoint
The Promoted Links in Sharepoint 2013 are fantastic but at 150x150 pixels are way to big for use. The following script reduces the size of the tiles to a more reasonable 100x100. Place it inside a Script Editor Web Part on the same page that your Promoted Links are displayed on;
<style type="text/css" unselectable="on">
div.ms-promlink-body {
height: 100px;
}
div.ms-tileview-tile-root {
height: 110px !important;
width: 110px !important;
}
div.ms-tileview-tile-content, div.ms-tileview-tile-detailsBox, div.ms-tileview-tile-content > a > div > span {
height: 100px !important;
width: 100px !important;
}
div.ms-tileview-tile-content > a > div > img {
max-width: 100%;
width: 100% !important;
}
ul.ms-tileview-tile-detailsListMedium {
height: 100px;
padding: 0;
}
li.ms-tileview-tile-descriptionMedium {
font-size: 11px;
line-height: 16px;
}
div.ms-tileview-tile-titleTextMediumExpanded, div.ms-tileview-tile-titleTextLargeCollapsed, div.ms-tileview-tile-titleTextLargeExpanded {
padding: 3px;
}
div.ms-tileview-tile-titleTextMediumCollapsed {
background: none repeat scroll 0 0 #002E4F;
font-size: 12px;
line-height: 16px;
min-height: 36px;
min-width: 97px;
padding-left: 3px;
position: absolute;
top: -36px;
}
li.ms-tileview-tile-descriptionMedium {
font-size: 11px;
line-height: 14px;
padding: 3px;
}
.ms-tileview-tile-content img{width:100px!important; height:100px!important;}
</style>
The div.ms-tileview-tile-root value should be set to slightly more than the tile size so as to preserve a border.