windows server

  1. Andy

    Set IP address, join domain, configure firewall, rename and activate computer using command prompt

    Here are the essentials commands you need to configure your Windows Server Core instance. Follow this tutorial to carry on these tasks with command prompt: Set a static IP address At a command prompt, type: netsh interface ipv4 show interfaces Make a note of the number shown in the "Idx"...
  2. Andy

    Script to clear printer spooler on Windows

    Here's the simple script to clear printer spooler on Windows: net stop spooler del %systemroot%\System32\spool\printers\* /Q /F /S net start spooler Copy all of the three commands above and save to a .bat file and run it whenever needed 😉 Works with the Windows 10 & Server OS 👍 Let me know...
  3. Andy

    How to upgrade or migrate Active Directory server

    A quick walkthrough on how to upgrade or migrate an Active Directory Server. In this guide, the old server is Windows Server 2008 R2 Standard, and the new server is Windows Server 2016 Essentials. This guide should work on other Windows Server version as the concept would be pretty much the...
Back
Top