Skip to content

Instantly share code, notes, and snippets.

@InTEGr8or
Last active January 20, 2022 22:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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