Move 150+ scripts from root and scripts/ into client/project directories: - clients/dataforth/scripts/ (110 files: AD2, sync, SSH, DB, DOS scripts) - clients/bg-builders/scripts/ (14 files: Lesley mgmt, Exchange, termination) - clients/internal-infrastructure/scripts/ (10 files: GDAP, Gitea, backups) - projects/msp-tools/scripts/ (9 files: CIPP, MSP onboarding, Datto) - projects/gururmm-agent/scripts/ (3 files: API test, JWT, record counts) - clients/glaztech/scripts/ (1 file: CentraStage removal) Also reorganized: - VPN scripts → infrastructure/vpn-configs/ - Retrieved API/JS files → api/ - Forum posts → projects/community-forum/forum-posts/ - SSH docs → clients/internal-infrastructure/docs/ - NWTOC/CTONW docs → projects/wrightstown-smarthome/docs/ - ACG website files → projects/internal/acg-website-2025/ - Dataforth docs → clients/dataforth/docs/ - schema-retrieved.sql → docs/database/ Deleted 24 tmp_*.ps1 one-off debug scripts (preserved in git history). Root reduced from 220+ files to 62 items (docs + directories only). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
69 lines
2.4 KiB
PowerShell
69 lines
2.4 KiB
PowerShell
Write-Output "=== HKCU Excel Addins ==="
|
|
$path = "HKCU:\Software\Microsoft\Office\Excel\Addins"
|
|
if (Test-Path $path) {
|
|
Get-ChildItem $path | ForEach-Object {
|
|
Write-Output "`n Key: $($_.PSChildName)"
|
|
Get-ItemProperty $_.PSPath | Format-List
|
|
}
|
|
} else {
|
|
Write-Output " Path not found"
|
|
}
|
|
|
|
Write-Output "`n=== HKCU Word Addins ==="
|
|
$path = "HKCU:\Software\Microsoft\Office\Word\Addins"
|
|
if (Test-Path $path) {
|
|
Get-ChildItem $path | ForEach-Object {
|
|
Write-Output "`n Key: $($_.PSChildName)"
|
|
Get-ItemProperty $_.PSPath | Format-List
|
|
}
|
|
} else {
|
|
Write-Output " Path not found"
|
|
}
|
|
|
|
Write-Output "`n=== HKCU PowerPoint Addins ==="
|
|
$path = "HKCU:\Software\Microsoft\Office\PowerPoint\Addins"
|
|
if (Test-Path $path) {
|
|
Get-ChildItem $path | ForEach-Object {
|
|
Write-Output "`n Key: $($_.PSChildName)"
|
|
Get-ItemProperty $_.PSPath | Format-List
|
|
}
|
|
} else {
|
|
Write-Output " Path not found"
|
|
}
|
|
|
|
Write-Output "`n=== HKLM Excel Addins ==="
|
|
$path = "HKLM:\Software\Microsoft\Office\Excel\Addins"
|
|
if (Test-Path $path) {
|
|
Get-ChildItem $path | ForEach-Object {
|
|
Write-Output "`n Key: $($_.PSChildName)"
|
|
Get-ItemProperty $_.PSPath | Format-List
|
|
}
|
|
} else {
|
|
Write-Output " Path not found"
|
|
}
|
|
|
|
Write-Output "`n=== HKLM WOW6432 Excel Addins ==="
|
|
$path = "HKLM:\Software\WOW6432Node\Microsoft\Office\Excel\Addins"
|
|
if (Test-Path $path) {
|
|
Get-ChildItem $path | ForEach-Object {
|
|
Write-Output "`n Key: $($_.PSChildName)"
|
|
Get-ItemProperty $_.PSPath | Format-List
|
|
}
|
|
} else {
|
|
Write-Output " Path not found"
|
|
}
|
|
|
|
Write-Output "`n=== Search for any Datto/SmartBadge registry entries ==="
|
|
$results = reg query "HKCU\Software\Microsoft\Office" /s /f "Datto" 2>&1
|
|
$results | ForEach-Object { Write-Output $_ }
|
|
$results2 = reg query "HKLM\Software\Microsoft\Office" /s /f "Datto" 2>&1
|
|
$results2 | ForEach-Object { Write-Output $_ }
|
|
$results3 = reg query "HKLM\Software\WOW6432Node\Microsoft\Office" /s /f "SmartBadge" 2>&1
|
|
$results3 | ForEach-Object { Write-Output $_ }
|
|
|
|
Write-Output "`n=== SmartBadge DLL registration (CLSID) ==="
|
|
$results4 = reg query "HKLM\Software\Classes\CLSID" /s /f "SmartBadge" 2>&1
|
|
$results4 | Select-Object -First 20 | ForEach-Object { Write-Output $_ }
|
|
$results5 = reg query "HKCU\Software\Classes\CLSID" /s /f "SmartBadge" 2>&1
|
|
$results5 | Select-Object -First 20 | ForEach-Object { Write-Output $_ }
|