Files
edncfix/Run-eDNCFix.bat
cproudlock 9a8b16e0d4 v1.3.0: Fixed header UI + auto-elevate to Administrator
- GE Aerospace ASCII banner stays fixed at top of console
- Live status line updates (Processing, Cleaned, Failed, etc.)
- Live stats counter in header (Cleaned/Failed counts)
- Batch file auto-elevates to Administrator via UAC

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 08:40:35 -05:00

30 lines
570 B
Batchfile

@echo off
:: eDNC Special Character Fix Launcher
:: Auto-elevates to Administrator
title eDNC Special Character Fix
:: Check for admin rights
net session >nul 2>&1
if %errorLevel% == 0 (
goto :run
) else (
goto :elevate
)
:elevate
echo Requesting Administrator privileges...
powershell -Command "Start-Process -FilePath '%~f0' -Verb RunAs"
exit /b
:run
echo.
echo Running with Administrator privileges...
echo.
cd /d "%~dp0"
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0eDNC-SpecialCharFix.ps1" %*
echo.
pause