Skip to content

Instantly share code, notes, and snippets.

@one2step
one2step / install.ps1
Last active May 12, 2026 05:29
홍이 셋업 — irm | iex 한 줄로 윈도우 SSH 셋업
# 홍이(HONGI) 셋업 — 어느 윈도우에서든 한 줄 실행
# 사용: irm <url>/install.ps1 | iex
$ErrorActionPreference = "Stop"
$ProgressPreference = "SilentlyContinue"
function Say($msg, $color = "White") { Write-Host $msg -ForegroundColor $color }
function Hr { Write-Host ("-" * 50) -ForegroundColor DarkGray }
$HostName = "macmini"