Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

windows install chocolatey

# Run Powrshell as admin

Copy Paste this

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Comment

how to install chocolatey on windows 10

# COPY AND PASTE THIS COMMAND 

# using cmd as admin
@"%SystemRoot%System32WindowsPowerShellv1.0powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%chocolateyin"

#or

#using powershell as admin
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Comment

chocolatey installation

@"%SystemRoot%System32WindowsPowerShellv1.0powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command " [System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%chocolateyin"
Comment

install chocolatey

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Comment

install chocolatey on windows

@"%SystemRoot%System32WindowsPowerShellv1.0powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%chocolateyin"
Comment

chocolatey install

#Install Chocolatey
#region
echo "Setting up Chocolatey software package manager"
New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT

Get-PackageProvider -Name chocolatey -Force

echo "Setting up Full Chocolatey Install"
Install-Package -Name Chocolatey -Force -ProviderName chocolatey
$chocopath = (Get-Package chocolatey | 
            ?{$_.Name -eq "chocolatey"} | 
                Select @{N="Source";E={((($a=($_.Source -split ""))[0..($a.length - 2)]) -join ""),"ToolschocolateyInstall" -join ""}} | 
                    Select -ExpandProperty Source)
& $chocopath "upgrade all -y"
choco install chocolatey-core.extension --force

echo "Creating daily task to automatically upgrade Chocolatey packages"
# adapted from https://blogs.technet.microsoft.com/heyscriptingguy/2013/11/23/using-scheduled-tasks-and-scheduled-jobs-in-powershell/
$ScheduledJob = @{
    Name = "Chocolatey Daily Upgrade"
    ScriptBlock = {choco upgrade all -y}
    Trigger = New-JobTrigger -Daily -at 2am
    ScheduledJobOption = New-ScheduledJobOption -RunElevated -MultipleInstancePolicy StopExisting -RequireNetwork
}
Register-ScheduledJob @ScheduledJob
#endregion

#Update Powershell
#region
$ErrorActionPreference = "silentlycontinue"

$PSVersionTable.PSVersion
choco install powershell -y
choco upgrade powershell -y

$ErrorActionPreference = "continue"
#endregion
Comment

PREVIOUS NEXT
Code Example
Shell :: git set commit date 
Shell :: ionic capacitor ios live reload 
Shell :: c++ build system in sublime linux for competetive programming 
Shell :: git clear commits 
Shell :: git push current project to master 
Shell :: git ignore whitespace 
Shell :: delete git config all remote url 
Shell :: Clone a specific repository 
Shell :: root check bash script 
Shell :: error: The following untracked working tree files would be overwritten by merge: .DS_Store .gitignore Please move or remove them before you merge. 
Shell :: view git username 
Shell :: install jupyterlab on ubuntu 
Shell :: sudo command not found 
Shell :: delete file older linux find 
Shell :: bash split file into multiple files 
Shell :: show the list of file of a commit 
Shell :: restart server centos 
Shell :: how to install minilibx in linux 
Shell :: open wsl as root 
Shell :: scanf not working in vscode 
Shell :: powercli install 
Shell :: No CMAKE_CXX_COMPILER could be found. 
Shell :: wsl file location 
Shell :: install make in window 
Shell :: how to install tar.gz in ubuntu 
Shell :: pip install import export django 
Shell :: voice recorder in linux 
Shell :: terminal get folder size windows 
Shell :: gumlet/php-image-resize 1.9.2 requires ext-gd * 
Shell :: ssh github generate key 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =