Skip to content

Instantly share code, notes, and snippets.

@InTEGr8or
Last active January 20, 2022 22:58
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 InTEGr8or/1d2d350aa8ed7729c9646788ee299ee7 to your computer and use it in GitHub Desktop.
Save InTEGr8or/1d2d350aa8ed7729c9646788ee299ee7 to your computer and use it in GitHub Desktop.
AWS Workspace Setup for SmartMap dev

Workspace Setup

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex
scoop install openssh
ssh-keygen # accept all defaults
cat ~/.ssh/id_rsa.pub | clip # Then paste clipboard contents to GitLab account SSH Keys

GlobalProtect

### https://dfwvpn.vertafore.com/global-protect/login.esp
Invoke-WebRequest "https://dfwvpn.vertafore.com/global-protect/msi/GlobalProtect64.msi" | Start-Process
# use dfwvpn.vertafore.com as the Portal Address

SSMS

wget "https://download.microsoft.com/download/a/2/e/a2ef0390-62b6-4189-af6d-1762e0aa90aa/SSMS-Setup-ENU.exe"; Start-Process -FilePath "SSMS-Setup-ENU.exe" -ArgumentList "-s" -Verb RunAs; Remove-Item -f "SSMS-Setup-ENU.exe"

GitLab SSH Requirements

# Install OpenSSH Server
Invoke-Expression -Command "c:\Progra~1\OpenSSH-Win64\install-sshd.ps1"
Set-Service sshd -StartupType Automatic
Start-Service sshd
Set-Service ssh-agent -StartupType Automatic
Start-Service ssh-agent
Get-Service *ssh*

Front-End Requirements

scoop install nodejs

Extra Tools for CLI

scoop install fd
scoop install bat
scoop install procs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment