Skip to content

Instantly share code, notes, and snippets.

View hgw-tools's full-sized avatar

hgw-tools

  • Joined Apr 21, 2026
View GitHub Profile
@hgw-tools
hgw-tools / hgw-ssh-setup.ps1
Last active May 2, 2026 12:53
HGW Connect SSH Setup
# HGW Connect — Lokale Build-Umgebung auf Win-PC einrichten
# Installiert alle Tools die für `npm run tauri build` nötig sind.
# Komplette Laufzeit: ~20-30 min (VS Build Tools dauern lange).
$ErrorActionPreference = 'Continue'
Write-Host ""
Write-Host "=== 1. Git installieren ===" -ForegroundColor Cyan
winget install --id Git.Git -e --silent --accept-package-agreements --accept-source-agreements --disable-interactivity 2>&1 | Tail-Object -Last 1
Write-Host "OK"