This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo [ INFO ] Removing JavaSoft key from current user... | |
reg delete "HKEY_CURRENT_USER\Software\JavaSoft" /f | |
if %ERRORLEVEL% equ 0 ( | |
echo [ OK ] JavaSoft key removed successfully. | |
) else ( | |
echo [ ERROR ] Failed to remove JavaSoft key or it does not exist. | |
) | |
echo [ INFO ] Removing PermanentUserId file... |