Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

installing choclatey no adminstrative rights

# Set directory for installation - Chocolatey does not lock
# down the directory if not the default
$InstallDir='C:ProgramDatachocoportable'
$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://community.chocolatey.org/install.ps1'))
# PowerShell 3+?
#iwr https://community.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://community.chocolatey.org/packages?q=id%3Aportable
Comment

PREVIOUS NEXT
Code Example
Shell :: steps of first commit gitlab 
Shell :: MongoInvalidArgumentError: Argument "docs" must be an array of documents 
Shell :: check head of file 
Shell :: ros2 galactic 
Shell :: gitlab ssh two factorn recovery 
Shell :: reset pop os audio 
Shell :: vimrc configuration file 
Shell :: how to delete default.save nginx 
Shell :: Configuration for local git accounts 
Shell :: vagrant snapshot commands 
Shell :: sftp client online linux remote 
Shell :: github cli on rpi 
Shell :: debian auto login 
Shell :: curl download with rate limit 
Shell :: ubuntu show window current desktop 
Shell :: check if vpc id exists 
Shell :: tag stale git branches to remove them but be able to restore them if necessary 
Shell :: how to increase the resources allocated to windows subsystem linux 
Shell :: search for css class in files in vs code 
Shell :: windows command count output lines 
Shell :: installing auto complete oh-my-posh PS 
Shell :: digi4school downloader 
Shell :: assign diff result into a variable in shell script 
Shell :: cmd echo empty line 
Shell :: bash inline operator 
Shell :: how to install ferment 
Shell :: Error: Cannot make for win32 and target squirrel: the maker declared that it cannot run on win32 
Shell :: How to init redis in background 
Shell :: sed insert string at beginning of line matching pattern 
Shell :: Cherrry pick and commit the changes to new branch 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =