Initial commit: Organized PowerShell scripts for ShopDB asset collection

Structure:
- asset-collection/: Local PC data collection scripts
- remote-execution/: WinRM remote execution scripts
- setup-utilities/: Configuration and testing utilities
- registry-backup/: GE registry backup scripts
- winrm-https/: WinRM HTTPS certificate setup
- docs/: Complete documentation

Each folder includes a README with detailed documentation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-10 10:57:54 -05:00
commit 62c0c7bb06
102 changed files with 28017 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
@echo off
REM ============================================================================
REM Test-WinRM-HTTPS.bat
REM Tests WinRM HTTPS setup on local computer
REM ============================================================================
echo.
echo ========================================
echo WinRM HTTPS Test Script
echo ========================================
echo.
REM Check for administrator privileges
net session >nul 2>&1
if %errorLevel% neq 0 (
echo [ERROR] This script requires Administrator privileges.
echo Please right-click and select "Run as Administrator"
echo.
pause
exit /b 1
)
echo [OK] Running with Administrator privileges
echo.
REM Get the directory where this batch file is located
set "SCRIPT_DIR=%~dp0"
echo Script directory: %SCRIPT_DIR%
echo.
REM Check if Test-WinRM-HTTPS-Setup.ps1 exists
if not exist "%SCRIPT_DIR%Test-WinRM-HTTPS-Setup.ps1" (
echo [ERROR] Test-WinRM-HTTPS-Setup.ps1 not found in script directory
echo Please ensure all files are copied from the network share
echo.
pause
exit /b 1
)
echo [OK] Required files found
echo.
REM Execute PowerShell script
echo Running WinRM HTTPS test...
echo.
PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command ^
"& '%SCRIPT_DIR%Test-WinRM-HTTPS-Setup.ps1'"
if %errorLevel% neq 0 (
echo.
echo [ERROR] Test failed with error code: %errorLevel%
echo.
pause
exit /b %errorLevel%
)
echo.
echo ========================================
echo [SUCCESS] Test Complete
echo ========================================
echo.
pause