by Rocky Beaven | Apr 16, 2015 | Exchange Server, Microsoft 365, PowerShell
You can use PowerShell to produce a list of all mailboxes that have Full Access permissions assigned against them, including who has the permission set: Get-Mailbox | Get-MailboxPermission | where { ($_.AccessRights -eq “FullAccess”) -and ($_.IsInherited -eq $false)...
by Rocky Beaven | Jan 19, 2015 | Software
Rather than faffing about extracting an ISO and then creating a bootable USB drive in separate steps, Rufus is a nifty utility does it all in one go – and extremely quickly in comparison to other tools....
by Rocky Beaven | Nov 18, 2014 | Miscellaneous, Software
Robocopy is a handy command line tool but it can be extremely slow on occasion (orders of magnitude slower than a GUI drag and drop for example). A few things to try: 1. On a reliable network don’t use the /Z switch. 2. Include the /MT:16 switch (enables the use...
by Rocky Beaven | Oct 21, 2014 | Miscellaneous, Software
If you have an executable that is stored on a remote (network) drive that you wish to pin to your taskbar then the usual “Right-click, Pin to Taskbar” option is not available. The workaround is as follows: 1. Pin a local application (e.g. Calculator) 2....
by Rocky Beaven | Aug 28, 2014 | Group Policy, Microsoft KB, Server 201x, Software
You can configure Remote Desktop Services (formerly known as Terminal Services) to disconnect and/or end sessions based on timings of your choice. A Microsoft forum entry describes the various settings and options...