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>
This commit is contained in:
@@ -1,13 +1,28 @@
|
||||
@echo off
|
||||
:: eDNC Special Character Fix Launcher
|
||||
:: Runs the PowerShell script with appropriate execution policy
|
||||
:: 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 Starting eDNC Special Character Fix...
|
||||
echo Running with Administrator privileges...
|
||||
echo.
|
||||
|
||||
cd /d "%~dp0"
|
||||
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0eDNC-SpecialCharFix.ps1" %*
|
||||
|
||||
echo.
|
||||
|
||||
Reference in New Issue
Block a user