- 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>
30 lines
570 B
Batchfile
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
|