| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | @ECHO OFF & SETLOCAL DisableDelayedExpansionTITLE prefs.js cleanerREM ### prefs.js cleaner for WindowsREM ## author: @claustromaniacREM ## version: 2.2CD /D "%~dp0":beginECHO:ECHO:ECHO                 ########################################ECHO                 ####  prefs.js cleaner for Windows  ####ECHO                 ####        by claustromaniac       ####ECHO                 ####              v2.2              ####ECHO                 ########################################ECHO:CALL :message "This script should be run from your Firefox profile directory."ECHO   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."ECHO   This Firefox profile shouldn't be in use during the process.CALL :message ""TIMEOUT 1 /nobreak >nulCHOICE /C SHE /N /M "Start [S] Help [H] Exit [E]"CLSIF ERRORLEVEL 3 (EXIT /B)IF ERRORLEVEL 2 (GOTO :showhelp)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 :FFcheckCALL :message "Backing up prefs.js..."SET "_time=%time: =0%"COPY /B /V /Y prefs.js "prefs-backup-%date:/=-%_%_time::=.%.js"CALL :message "Cleaning prefs.js..."CALL :cleanupCALL :message "All done!"TIMEOUT 5 >nulENDLOCALEXIT /BREM ########## Abort Function ###########:abortCALL :message %1TIMEOUT %~2 >nulEXITREM ########## Message Function #########:messageECHO:ECHO:  %~1ECHO:GOTO :EOFREM ####### Firefox Check Function ######:FFcheckTASKLIST /FI "IMAGENAME eq firefox.exe" 2>NUL | FIND /I /N "firefox.exe">NULIF NOT ERRORLEVEL 1 (	CLS	CALL :message "Firefox is still running."	ECHO   If you're not currently using this profile you can continue, otherwise	CALL :message "close Firefox first!"	ECHO:	PAUSE	CLS	CALL :message "Resuming..."	TIMEOUT 5 /nobreak >nul)GOTO :EOFREM ######### Cleanup Function ##########:cleanupFOR /F tokens^=2^ delims^=^'^" %%G IN ('FINDSTR /R /C:"^[^\"']*user_pref[ 	]*\([ 	]*[\"'][^\"']*[\"'][ 	]*," user.js') DO (	IF NOT ""=="%%G" (SET "[%%G]=1"))(	FOR /F "tokens=1,* delims=:" %%G IN ('FINDSTR /N "^" prefs.js') DO (		IF ""=="%%H" (			ECHO:		) ELSE (			FOR /F tokens^=1^,2^ delims^=^"^' %%I IN ("%%H") DO (				IF NOT DEFINED [%%J] (ECHO:%%H)			)		)	))>tempcleanedprefsMOVE /Y tempcleanedprefs prefs.jsGOTO :EOFREM ############### Help ##################:showhelpMODE 80,34CLSCALL :message "This script creates a backup of your prefs.js file before doing anything."ECHO   It should be safe, but you can follow these steps if something goes wrong:ECHO: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 notice something wrong, especially with your extensions,CALL :message "     and/or with the UI, go to about:support, and restart Firefox with"ECHO        add-ons disabled. Then, restart it again normally, and see if theCALL :message "     problems were solved."ECHO:CALL :message "If you are able to identify the cause of your issues, please bring it up"ECHO   on ghacks-user.js GitHub repository.ECHO:ECHO:PAUSECLSGOTO :beginREM #####################################
 |