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

Configure DHCP Server After Installing Step By Step

crtechtipsNov 4, 20163 min read

DHCP Server is one of the critical parts of today’s network. When somebody request for IP (Internet Protocol), instead of a network administrator, a server distributes IP for the device. It …

Install DHCP Server on Windows Server 2016

crtechtipsNov 4, 20162 min read

Dynamic Host Configuration Protocol (DHCP) is a network protocol used in Internet Protocol (IP) networks. The DHCP server automatically distributes IP for network interfaces and devices. When somebody sends a request for …

How to Install DNS Server on Windows Server 2016

crtechtipsNov 4, 20162 min read

When you install windows server it is just a box, nothing it there like services, if you want to use the services you should install and configure them manually whether …

Use PowerShell to disable scheduled tasks

crtechtipsSep 1, 20161 min read

How can I use Windows PowerShell to disable a scheduled task? Use the Disable-ScheduledTask cmdlet and specify the task name, for example: Disable-ScheduledTask -TaskName “SystemScan”     How can I …

Use PowerShell to disconnect virtual disk

crtechtipsSep 1, 20161 min read

How can I use Windows PowerShell to disconnect from a virtual disk? Use the Disconnect-VirtualDisk cmdlet and specify the friendly name, for example: Disconnect-VirtualDisk -FriendlyName VirtualDisk01