Enterprise Operating Systems

Troubleshooting and Guides for: Microsoft Server, Linux, and VMware

Read More

Dell Hardware/Software Guides

Dell Servers – PowerEdge, Blades, and Cloud
integrated Dell Remote Access Controller (iDrac)
OpenMange Server Administrator (OMSA)

Read More

Scripting Guides

PowerShell, Bash, JSON, and Python Scripting Guides

Read More

Active Directory Migration from Windows Server 2003 to Windows Server 2012 R2

crtechtipsDec 2, 20175 min read

Transferring the Flexible Single Master Operations (FSMO) Role Open the Active Directory Users and Computers console on your new Windows Server 2012 R2 computer. Right click your domain and select Operations Masters in the sub menu. …

Auto login Windows Server 2012

crtechtipsOct 26, 20171 min read

If an app requires an AD acct to be logged into the server in order for it to work, setup autologon   You will need to have an account with a …

How to Disable JAVA Update on Windows Server

crtechtipsOct 26, 20172 min read

Disabling the Java update notifications is actually pretty easy. There’s a registry setting in HKEY_LOCAL_MACHINE that will allow you to completely disable both update notifications and the update functionality. The full path …

Export List of Users from AD and all Proxy Addresses

crtechtipsOct 24, 20171 min read

If you need a list of users and their respective proxy addresses then the command below will do this 🙂   Get-ADUser –Filter * –Properties proxyaddresses | Select-Object Name, @{L = …

Connect To Skype for Business Online in 365 via PowerShell

crtechtipsOct 24, 20171 min read

To connect to Skype online via PowerShell open an elevated PowerShell session and run the commands:   # Download and install the Skype PowerShell Command http://go.microsoft.com/fwlink/?LinkId=294688 $credential = Get-Credential $session …