Show hidden files in Mac OSX
Show hidden files Start a Terminal windows Type followinf commands: defaults write com.apple.Finder AppleShowAllFiles TRUE killall Finder Hide...
Check active queries in MS SQL
Here is an custom query for checking all running queries on an MS SQL server. the custom writing...
Usefull PowerShell commands
PowerShell is a powerfull tool when administrating Microsoft products and personally i like using Windows PowerShell ISE that...
Outlook 2013 on terminal server displays “configuring office 2013 64-bit components” at launch
When you run Outlook 2013 in a terminal server (aka Remote Desktop Session Host) you can experience that...
Remove Ask Toolbar Commandline
To remove the ask toolbar run the following line in a elevated command line window: MsiExec.exe /qn /X{86D4B82A-ABED-442A-BE86-96357B70F4FE}...
PXE boot for some computers doesn’t work, SCCM 2012
Sometimes computers won`t PXE boot for some reason when you are re-installing the Operating system using System Center...
How to find your FSMO Roles?
There are several ways to find out who has your FSMO roles in your Active Directory environment, but...
Change primary email address in Office 365
Start powershell as administrator Run the following commands:$LiveCred = Get-Credential(Enter your Office 365 administrator credentials)$Session = New-PSSession -ConfigurationName...
List users and size of mailbox in Exchange 2007 and 2010 with Powershell
Get-Mailbox | Get-MailboxStatistics | select-object DisplayName, {$_.TotalItemSize.Value.ToMB()}