Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions windowscmd.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

#this command allow run unasign command in current powershell session
Set-ExecutionPolicy Bypass -Scope Process -Force


#this command set security protacol and download powershell script for download chocolety
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))


#command for check chocolatey vertion
chocho -v


#command for install nodejs using chocolety
choco install nodejs.install