mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 10:00:17 +05:30
- Normalize line endings across all files - Remove rpm target from Linux build (requires rpmbuild) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
847 B
Batchfile
32 lines
847 B
Batchfile
@echo off
|
|
echo PanConverter Context Menu Uninstallation
|
|
echo ========================================
|
|
echo.
|
|
|
|
REM Check for administrator privileges
|
|
net session >nul 2>&1
|
|
if %errorLevel% == 0 (
|
|
echo Running with administrator privileges...
|
|
) else (
|
|
echo This script requires administrator privileges.
|
|
echo Please right-click and select "Run as administrator"
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Removing context menu entries...
|
|
reg import "%~dp0uninstall-context-menu.reg"
|
|
|
|
if %errorLevel% == 0 (
|
|
echo.
|
|
echo Context menu integration removed successfully!
|
|
echo PanConverter entries have been removed from the Windows Explorer context menu.
|
|
) else (
|
|
echo.
|
|
echo Failed to remove context menu entries.
|
|
echo Please check that the registry file exists and try again.
|
|
)
|
|
|
|
echo.
|
|
pause |