Howard's personal MSP client documentation folder imported into shared
ClaudeTools repo via /import command. Scope:
Clients (structured MSP docs under clients/<name>/docs/):
- anaise (NEW) - 13 files
- cascades-tucson - 47 files merged (existing had only reports/)
- dataforth - 18 files merged (alongside incident reports)
- instrumental-music-center - 14 files merged
- khalsa (NEW) - 22 files, multi-site (camden, river)
- kittle (NEW) - 16 files incl. fix-pdf-preview, gpo-intranet-zone
- lens-auto-brokerage (NEW) - 3 files (name matches SOPS vault)
- _client_template - 13-file scaffold for new clients
MSP tooling (projects/msp-tools/):
- msp-audit-scripts/ - server_audit.ps1, workstation_audit.ps1, README
- utilities/ - clean_printer_ports, win11_upgrade,
screenconnect-toolbox-commands
Credential handling:
- Extracted 1 inline password (Anaise DESKTOP-O8GF4SD / david)
to SOPS vault: clients/anaise/desktop-o8gf4sd.sops.yaml
- Redacted overview.md with vault reference pattern
- Scanned all 160 files for keys/tokens/connection strings -
no other credentials found
Skipped:
- Cascades/.claude/settings.local.json (per-machine config)
- Source-root CLAUDE.md (personal, claudetools has its own)
- scripts/server_audit.ps1 and workstation_audit.ps1 at source root
(identical duplicates of msp-audit-scripts versions)
Memory updates:
- reference_client_docs_structure.md (layout, conventions, active list)
- reference_msp_audit_scripts.md (locations, ScreenConnect 80-char rule)
Session log: session-logs/2026-04-16-howard-client-docs-import.md
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.4 KiB
Markdown
47 lines
1.4 KiB
Markdown
# MSP Audit Scripts
|
|
|
|
Universal Windows audit scripts for MSP use. Run via ScreenConnect Toolbox as SYSTEM.
|
|
|
|
## Scripts
|
|
|
|
| Script | Target | Output |
|
|
|--------|--------|--------|
|
|
| `server_audit.ps1` | Windows Server 2012-2025 | `C:\Temp\HOSTNAME_server_audit_YYYY-MM-DD.json` |
|
|
| `workstation_audit.ps1` | Windows 10/11 | `C:\Temp\HOSTNAME_workstation_audit_YYYY-MM-DD.json` |
|
|
|
|
## ScreenConnect Toolbox Commands
|
|
|
|
### Server Audit
|
|
```powershell
|
|
#!ps
|
|
#maxlength=500000
|
|
#timeout=600000
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
|
New-Item -Path C:\Temp -ItemType Directory -Force | Out-Null
|
|
$u = "https://raw.githubusercontent.com/Howweird/msp-audit-scripts/master/server_audit.ps1"
|
|
Invoke-WebRequest -Uri $u -OutFile "C:\Temp\server_audit.ps1" -UseBasicParsing
|
|
. C:\Temp\server_audit.ps1
|
|
```
|
|
|
|
### Workstation Audit
|
|
```powershell
|
|
#!ps
|
|
#maxlength=500000
|
|
#timeout=600000
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force
|
|
New-Item -Path C:\Temp -ItemType Directory -Force | Out-Null
|
|
$u = "https://raw.githubusercontent.com/Howweird/msp-audit-scripts/master/workstation_audit.ps1"
|
|
Invoke-WebRequest -Uri $u -OutFile "C:\Temp\workstation_audit.ps1" -UseBasicParsing
|
|
. C:\Temp\workstation_audit.ps1
|
|
```
|
|
|
|
## Requirements
|
|
|
|
- Must run as SYSTEM or local Administrator
|
|
- Output directory: `C:\Temp` (created automatically)
|
|
- No dependencies beyond built-in Windows PowerShell modules
|
|
|
|
## Output
|
|
|
|
- `.json` — Structured data with hostname in filename for multi-machine audits
|