Take Ownership and Grant ‘Full Control’ Recursively
Take Ownership KB ID 0001200 Problem I had a bunch of old user profile folders I needed to delete today, When setup properly even the domain administrator can’t get in there and delete them; You need permission to perform this action. You don’t currently have persmission to access this folder If it’s just one folder then simply take ownership, grant yourself rights and delete it! But I had a lot of folders so I...
Powershell: Get Folder Size ‘Quickly’
KB ID 0001660 Problem Right clicking a folder and selecting properties is usually how you would see how large a folder is. Which is great, but if your folder size is HUGE (i.e. many terabytes) then this takes ages! Solution If you use PowerShell you can get the figure considerably quicker! Below I want to ge the size of E:\Shared; In MegaBytes; “{0:N2}” -f ((Get-ChildItem -path E:\Shared -recurse | Measure-Object -property...
Adding Rights to Public Folders (Recursively)
KB ID 0001598 Problem After a recent Exchange migration (2007 > 2013 > 2016), I had problems with users not being able to see public folders, one user could see them all, (so I know they were present and correct, content wise,) but other users could not even see them. Normally in this situation I’d test them in Outlook Web App first, if they work there then look at Outlook, but Public folders just didn’t work in...