Server 2012 r2 Deduplication and Windows XP
I was having issues with Windows XP clients not able to open xls, bmp, etc files on a volume that had been deduped. Windows 7 clients had no issue at all. It ended up being …
I was having issues with Windows XP clients not able to open xls, bmp, etc files on a volume that had been deduped. Windows 7 clients had no issue at all. It ended up being …
Scripts for exchange 2007 – Find User mailbox sizes with database names Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | Select-Object database,DisplayName,@{label=”TotalItemSize(MB)”;expression={$_.TotalItemSize.Value.ToMB()}},ItemCount | Export-CSV C:\UserMailboxes.csv
Scripts for exchange 2007 – Find MailboxDatabase Sizes Get-MailboxDatabase | Select Server, StorageGroupName, Name, @{Name=”Size (GB)”;Expression={$objitem = (Get-MailboxDatabase $_.Identity); $path = “`\`\” + $objitem.server + “`\” + $objItem.EdbFilePath.DriveName.Remove(1).ToString() + “$”+ $objItem.EdbFilePath.PathName.Remove(0,2); $size = ((Get-ChildItem $path).length)/1048576KB; …
Use the following filter to view logons for a particular user. <QueryList> <Query Id=”0″ Path=”Security”> <Select Path=”Security”>*[System[(EventID=’4624′)] and EventData[Data[@Name=’TargetUserName’]=’username’] ] </Select> </Query> </QueryList>