This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Windows 10 Pro / WSL Modern Web Development Boxstarter Script | |
# Author: JASM. Credit goes to many gist.github.com sources especially (jessfraz, NickCraver, and Microsoft) | |
# | |
############################ | |
# Instructions | |
############################ | |
# 1: Install Boxstarter from the web using PowerShell v3 or higher | |
# . { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# 2: Set the PowerShell execution policy to runs scripts that are downloaded from the Internet and not signed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Boxstarter Script (Windows 10 settings and modern web deployment) | |
# Credit to github.com/elithrar | |
# Pre | |
Disable-UAC | |
# Set PC name | |
$computername = "JASM-PC" | |
if ($env:computername -ne $computername) { | |
Rename-Computer -NewName $computername |