Skip to content

Instantly share code, notes, and snippets.

@john-clark
Created July 27, 2024 18:48
Show Gist options
  • Save john-clark/267d0c5293de2ac9f66163bdbb8d90ae to your computer and use it in GitHub Desktop.
Save john-clark/267d0c5293de2ac9f66163bdbb8d90ae to your computer and use it in GitHub Desktop.

Setup new Windows for BBS testing

Some notes on what I was testing...

Working on getting Commodore and Amiga BBS and terminals going.

Install Choco from admin powershell

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

Install software

choco install vim vim wget 7zip winvice-nightly fs-uae fs-uae-launcher -y

disable stupid wget from profile

Set-ExecutionPolicy Unrestricted
if (-not (Test-Path $PROFILE)) { New-Item -ItemType File -Path $PROFILE }
$profileContent = Get-Content $PROFILE -Raw
$lineExists = $profileContent -match 'Remove-Item Alias:wget'
if (-not $lineExists) { Add-Content -Path $PROFILE -Value 'Remove-Item Alias:wget' }
. $profile

Get Tcpser

wget https://raw.githubusercontent.com/john-clark/tcpser/master/install_tcpser.ps1
wget https://raw.githubusercontent.com/john-clark/tcpser/master/com6.ps1
git clone https://github.com/john-clark/cnetbbs.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment