Archive stale documentation
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
# Post-Install: Als Erstes Codex wieder startklar machen
|
||||
|
||||
Ziel: Nach der frischen Windows-Installation zuerst wieder mit Codex/ChatGPT weiterarbeiten koennen, bevor der restliche Wiederaufbau startet.
|
||||
|
||||
## 1. Internet herstellen
|
||||
|
||||
1. Windows starten.
|
||||
2. LAN/WLAN verbinden.
|
||||
3. Falls kein Internet vorhanden ist:
|
||||
- externe Backup-HDD anschliessen
|
||||
- Treiber aus `H:\Windows-Neuaufsetzen-Backup\13_Treiber_Windows` installieren
|
||||
- besonders LAN/WLAN/Chipsatz pruefen
|
||||
|
||||
## 2. Browser starten
|
||||
|
||||
1. Microsoft Edge oeffnen.
|
||||
2. Bei Microsoft/ChatGPT/Codex anmelden, je nachdem welche Variante genutzt wird.
|
||||
3. Diese Datei auf H: oeffnen:
|
||||
|
||||
```text
|
||||
H:\Windows-Neuaufsetzen-Backup\POSTINSTALL_ERSTES_ZIEL_CODEX.md
|
||||
```
|
||||
|
||||
## 3. Basiswerkzeuge installieren
|
||||
|
||||
PowerShell als normaler Benutzer oeffnen.
|
||||
|
||||
```powershell
|
||||
winget install --exact --id Git.Git --source winget --accept-package-agreements --accept-source-agreements
|
||||
winget install --exact --id Microsoft.VisualStudioCode --source winget --accept-package-agreements --accept-source-agreements
|
||||
winget install --exact --id OpenJS.NodeJS.LTS --source winget --accept-package-agreements --accept-source-agreements
|
||||
```
|
||||
|
||||
Optional danach UniGetUI:
|
||||
|
||||
```powershell
|
||||
winget install --exact --id Devolutions.UniGetUI --source winget --accept-package-agreements --accept-source-agreements
|
||||
```
|
||||
|
||||
## 4. SSH und Git-Konfiguration zurueckholen
|
||||
|
||||
Backup-HDD muss angeschlossen sein.
|
||||
|
||||
```powershell
|
||||
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.ssh" | Out-Null
|
||||
Copy-Item -Path "H:\Windows-Neuaufsetzen-Backup\09_Programme_Settings_Lizenzen\ssh\*" -Destination "$env:USERPROFILE\.ssh" -Force
|
||||
Copy-Item -Path "H:\Windows-Neuaufsetzen-Backup\09_Programme_Settings_Lizenzen\git\.gitconfig" -Destination "$env:USERPROFILE\.gitconfig" -Force
|
||||
```
|
||||
|
||||
SSH-Key-Rechte pruefen:
|
||||
|
||||
```powershell
|
||||
ssh -T git@github.com
|
||||
```
|
||||
|
||||
Falls Gitea genutzt wird, stattdessen oder zusaetzlich den Gitea-Host testen.
|
||||
|
||||
## 5. Homelab-Repo wieder verfuegbar machen
|
||||
|
||||
Wenn `G:\Gitea_Clone\homelab-infra` noch existiert:
|
||||
|
||||
```powershell
|
||||
cd /d G:\Gitea_Clone\homelab-infra
|
||||
git status
|
||||
```
|
||||
|
||||
Falls das Repo neu geklont werden muss:
|
||||
|
||||
```powershell
|
||||
New-Item -ItemType Directory -Force -Path G:\Gitea_Clone | Out-Null
|
||||
cd /d G:\Gitea_Clone
|
||||
git clone <DEIN_GITEA_ODER_GITHUB_REPO_URL> homelab-infra
|
||||
cd homelab-infra
|
||||
git status
|
||||
```
|
||||
|
||||
## 6. Codex-Kontext wieder aufnehmen
|
||||
|
||||
Wichtige Dateien:
|
||||
|
||||
```text
|
||||
H:\Windows-Neuaufsetzen-Backup\12_Exportierte_Listen\installierte_programme_lesbar.md
|
||||
H:\Windows-Neuaufsetzen-Backup\12_Exportierte_Listen\kritische_programme_lizenz_check.md
|
||||
H:\Windows-Neuaufsetzen-Backup\09_Programme_Settings_Lizenzen\keys_exporte\banking4_license_private.txt
|
||||
G:\Gitea_Clone\homelab-infra\ops\windows-reinstall\docs\windows-neuaufsetzen-masterplan.md
|
||||
```
|
||||
|
||||
Dann Codex/ChatGPT sagen:
|
||||
|
||||
```text
|
||||
Windows ist frisch installiert. Bitte hilf mir mit dem Post-Install-Wiederaufbau anhand von H:\Windows-Neuaufsetzen-Backup und dem Masterplan.
|
||||
```
|
||||
|
||||
## 7. Danach erst Programme wiederherstellen
|
||||
|
||||
Reihenfolge:
|
||||
|
||||
1. Banking4 installieren und Lizenz aus `banking4_license_private.txt` nutzen.
|
||||
2. Banking4-Datentresor aus `H:\Windows-Neuaufsetzen-Backup\07_Banking_Finanzen\Banking4_Datentresor_explizit` oeffnen.
|
||||
3. Microsoft 365 ueber Microsoft-Konto installieren.
|
||||
4. WISO Steuer installieren und Steuerdateien aus `WISO_Steuer_Dokumente` pruefen.
|
||||
5. Restliche Programme mit UniGetUI/WinGet/Installern wieder aufbauen.
|
||||
Reference in New Issue
Block a user