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...
bottom of page