Windows

  • [code],  Hello IT,  Windows

    Delete all users

    Windows CMD tool to delete all users

    This is a small windows command line tool I made to delete all users (local only) that are not part of the administrator group.

    At regular basis, I received demo stations back from exhibitions and training sessions. Those demo stations needed to be cleaned up for the next exhibition or training, and manually deleting the users was a boring job that took too much time, in my opinion. So I developed this little tool in my spare time to help me safe time at work.

    Delete all users

    You can download this tool from Github page

  • Docker,  Hello IT,  Windows

    Install Docker EE on Windows server

    I had some issues to find the correct info to install Docker EE on Windows server and lost to much time on trial and error, so I decided to share how I did it.

    The Docker EE license is included in Windows server licenses, so you don’t need extra licenses from Docker.

    Install Docker EE on Windows server via PowerShell

    Open PowerShell and execute the following commands

       Install-WindowsFeature -Name Containers 
       Restart-Computer -Force  
    

    Wait until the server is rebooted and then execute the next commands in PowerShell

       Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
       Install-Package -Name docker -ProviderName DockerMsftProvider -Force -RequiredVersion 19.03 
       Start-Service docker