Real-time file watcher to strip invalid characters (0xFF, etc.) from DNC program files for CNC machine compatibility. Features: - Monitors folder for .pun files (configurable) - Automatically cleans files on create/modify - Configurable character removal - Retry logic for locked files - Session statistics 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
322 B
Batchfile
15 lines
322 B
Batchfile
@echo off
|
|
:: eDNC Special Character Fix Launcher
|
|
:: Runs the PowerShell script with appropriate execution policy
|
|
|
|
title eDNC Special Character Fix
|
|
|
|
echo.
|
|
echo Starting eDNC Special Character Fix...
|
|
echo.
|
|
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0eDNC-SpecialCharFix.ps1" %*
|
|
|
|
echo.
|
|
pause
|