top of page


Steps To Install Docker On Ubuntu 16.04 Server
Installing Docker on Ubuntu 16.04 LTS 1. What to know before you install Docker on Ubuntu 16.04 Before you install Docker on Ubuntu...


Life Cycle of Docker Container
Life Cycle of Docker Container Commands 1. docker create : Create a new container Usage: docker create [OPTIONS] IMAGE [COMMAND]...


PowerShell Script to Create Administrator User in Windows Server
Create Administrator User in Windows Server Using PowerShell Script function Create-AdministratorUser { $Username = "Mohan" $Password...


Disable Internet Explorer Enhanced Security Configuration in Windows Server Using PowerShell
PowerShell - Disable Internet Explorer Enhanced Security Configuration function Disable-InternetExplorerESC { $AdminKey =...


PowerShell Silent Installer of Google Chrome, 7Zip & Notepad++
PowerShell - Install Chrome function Install-Chrome { $LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; ...


How To Set Static IP Using PowerShell in Windows
PowerShell - Configure Static IP Address in Windows <# .Synopsis Update the static IP address one to another .DESCRIPTION This Script...


PowerShell Script for Silent Java 9 Installer
Java 9 Silent Installer PowerShell Script function Install-Java { $OS = (gwmi win32_operatingsystem).osarchitecture if ($OS -ne...


Working with Docker Container Volumes
Docker Volumes 1.Volume can be declared in two different ways. a) On the command-line, with the -v flag for docker run. docker run -d -v...


Docker Command Line Interface on Windows Server 2016
List of Docker Commands 1.Display system-wide information docker info 2.Display docker installed version docker version 3.List docker all...


Docker on Windows Server 2016
Steps to Install Docker on windows using PowerShell Open an elevated PowerShell session and follow these steps: 1. Install the containers...
bottom of page