user.js/prefs cleaner.bat
2017-12-14 10:47:52 +00:00

104 lines
3.1 KiB
Batchfile

@ECHO OFF
TITLE prefs.js cleaner
REM ### prefs.js cleaner for Windows
REM ## author: @claustromaniac
REM ## version: 1.0b3
SETLOCAL EnableDelayedExpansion
:begin
CLS
CALL :message "This batch should be run from your Firefox profile directory."
CALL :message "It will remove any entries from prefs.js that also exist in user.js."
CALL :message "This will allow inactive preferences to be reset to their default values."
CALL :message "Firefox needs to stay closed during the process."
ECHO:
CHOICE /C SHE /N /M "Start [S] Help [H] Exit [E]"
CLS
IF ERRORLEVEL 3 ( EXIT /B )
IF ERRORLEVEL 2 (
CALL :showhelp
GOTO :begin
)
IF NOT EXIST "user.js" ( CALL :abort "user.js not found in the current directory." 30 )
IF NOT EXIST "prefs.js" ( CALL :abort "prefs.js not found in the current directory." 30 )
CALL :FFcheck
CALL :message "Backing up prefs.js..."
COPY /B /V /Y prefs.js "prefs-backup-!date:/=-!_!time::=.!.js"
CALL :message "Cleaning prefs.js...
CALL :message "Don't close this window and don't run Firefox until this is done."
CALL :cleanup
CLS
CALL :message "All done."
TIMEOUT 5 >nul
EXIT /B
REM ########## Abort Function ###########
:abort
CALL :message %1
TIMEOUT %~2 >nul
EXIT
REM ########## Message Function #########
:message
ECHO:
ECHO:%~1
ECHO:
GOTO :EOF
REM ####### Firefox Check Function ######
:FFcheck
TASKLIST /FI "IMAGENAME eq firefox.exe" 2>NUL | FIND /I /N "firefox.exe">NUL
IF NOT ERRORLEVEL 1 (
CLS
CALL :message "Please, close Firefox to continue."
TIMEOUT 3 >nul
GOTO :FFcheck
)
GOTO :EOF
REM ######### Cleanup Function ##########
:cleanup
SETLOCAL DisableDelayedExpansion
(
FOR /F "tokens=1,* delims=:" %%G IN ( 'FINDSTR /N "^" prefs.js' ) DO (
SET "_line=%%H"
SETLOCAL EnableDelayedExpansion
SET "_pref=!_line: =!"
IF /I "user_pref"=="!_pref:~0,9!" (
FOR /F "delims=," %%X IN ("!_pref!") DO ( SET "_pref=%%X" )
SET _pref=!_pref:"=""!
FIND /I "!_pref!" user.js >nul
IF ERRORLEVEL 1 (
ECHO:!_line!
)
) ELSE (
ECHO:!_line!
)
ENDLOCAL
)
)>newprefs.js
ENDLOCAL
MOVE /Y newprefs.js prefs.js
GOTO :EOF
REM ########### Help Function ###########
:showhelp
CLS
CALL :message "This script creates a backup of your prefs.js file before doing anything."
CALL :message "It should be safe, but you can follow these steps if something goes wrong:"
CALL :message " 1. Make sure Firefox is closed."
ECHO 2. Delete prefs.js in your profile folder.
CALL :message " 3. Delete Invalidprefs.js if you have one in the same folder."
ECHO 4. Rename or copy your latest backup to prefs.js.
CALL :message " 5. Run Firefox and see if you notice anything wrong with it."
ECHO 6. If you do, restart it again, and check back.
CALL :message " 7. If you still notice something wrong, especially with your extensions,"
ECHO and/or with the UI, go to about:support, and restart Firefox with
CALL :message " add-ons disabled. Then, restart it again normally, and see if the problems"
ECHO were solved.
ECHO:
CALL :message "If you are able to identify the cause of your issues, please bring it up on"
ECHO ghacks-user.js GitHub repository.
ECHO:
ECHO:
PAUSE
CLS
GOTO :EOF
REM #####################################