Skip to content

Instantly share code, notes, and snippets.

@JamesSkemp
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JamesSkemp/03d8abc30ada152bccfb to your computer and use it in GitHub Desktop.
Save JamesSkemp/03d8abc30ada152bccfb to your computer and use it in GitHub Desktop.
Get started with Atom
# run as administrator
# if you haven't already, execution policy will need to be relaxed. This probably returns Restricted
Get-ExecutionPolicy
# switch to a lax policy
Set-ExecutionPolicy Unrestricted
# install Chocolatey
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
#install Atom
choco install Atom
# set execution policy back, if needed
Set-ExecutionPolicy Restricted
# if you need to upgrade (you'll need to update your shortcuts)
cup Atom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment