top of page


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...


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...


How to Build Windows Core Server with Internet Information Services (IIS) Container in Docker and Ho
Steps to build a microsoft/iis docker container and hosting the website:- 1.Create a Dockerfile with your website FROM microsoft/iis RUN...
bottom of page