Created
June 13, 2018 15:21
-
-
Save hsiaoyi0504/6e058d77b14ef6c6484cb2f08fea119c to your computer and use it in GitHub Desktop.
My script for installing chocolatey
This file contains hidden or 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
# Need to execute "Set-ExecutionPolicy RemoteSigned -Scope CurrentUser" before executing this script | |
# Set directory for installation - Chocolatey does not lock | |
# down the directory if not the default | |
$InstallDir='C:\Users\Yi.Hsiao\Documents\chocoportable' | |
$env:ChocolateyInstall="$InstallDir" | |
# If your PowerShell Execution policy is restrictive, you may | |
# not be able to get around that. Try setting your session to | |
# Bypass. | |
Set-ExecutionPolicy Bypass | |
# All install options - offline, proxy, etc at | |
# https://chocolatey.org/install | |
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
# PowerShell 3+? | |
#iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
choco install puppet-agent.portable -y | |
choco install ruby.portable -y | |
choco install git.commandline -y | |
# pick an editor | |
#choco install visualstudiocode.portable -y # not yet available | |
choco install notepadplusplus.commandline -y | |
#choco install nano -y | |
#choco install vim-tux.portable | |
# What else can I install without admin rights? | |
# https://chocolatey.org/packages?q=id%3Aportable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment