1.1
This commit is contained in:
parent
2ad3fbdbd3
commit
74f18db85a
@ -3,7 +3,7 @@ TITLE prefs.js cleaner
|
||||
|
||||
REM ### prefs.js cleaner for Windows
|
||||
REM ## author: @claustromaniac
|
||||
REM ## version: 1.0
|
||||
REM ## version: 1.1
|
||||
|
||||
SETLOCAL EnableDelayedExpansion
|
||||
:begin
|
||||
@ -12,7 +12,7 @@ ECHO:
|
||||
ECHO ########################################
|
||||
ECHO #### prefs.js cleaner for Windows ####
|
||||
ECHO #### author: @claustromaniac ####
|
||||
ECHO #### version: 1.0 ####
|
||||
ECHO #### version: 1.1 ####
|
||||
ECHO ########################################
|
||||
ECHO:
|
||||
CALL :message "This script should be run from your Firefox profile directory."
|
||||
@ -20,6 +20,7 @@ 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 >nul
|
||||
CHOICE /C SHE /N /M "Start [S] Help [H] Exit [E]"
|
||||
CLS
|
||||
IF ERRORLEVEL 3 (EXIT /B)
|
||||
@ -32,7 +33,7 @@ COPY /B /V /Y prefs.js "prefs-backup-!date:/=-!_!time::=.!.js"
|
||||
CALL :message "Cleaning prefs.js...
|
||||
CALL :cleanup
|
||||
CLS
|
||||
CALL :message "All done."
|
||||
CALL :message "All done^!"
|
||||
TIMEOUT 5 >nul
|
||||
EXIT /B
|
||||
|
||||
@ -43,9 +44,11 @@ TIMEOUT %~2 >nul
|
||||
EXIT
|
||||
REM ########## Message Function #########
|
||||
:message
|
||||
SETLOCAL DisableDelayedExpansion
|
||||
ECHO:
|
||||
ECHO: %~1
|
||||
ECHO:
|
||||
ENDLOCAL
|
||||
GOTO :EOF
|
||||
REM ####### Firefox Check Function ######
|
||||
:FFcheck
|
||||
@ -54,9 +57,7 @@ IF NOT ERRORLEVEL 1 (
|
||||
CLS
|
||||
CALL :message "Firefox is still running."
|
||||
ECHO If you're not currently using this profile you can continue, otherwise
|
||||
ECHO:
|
||||
ECHO close Firefox first^^!
|
||||
ECHO:
|
||||
CALL :message "close Firefox first^!"
|
||||
ECHO:
|
||||
PAUSE
|
||||
CLS
|
||||
@ -72,6 +73,7 @@ SETLOCAL DisableDelayedExpansion
|
||||
SET "_line=%%H"
|
||||
SETLOCAL EnableDelayedExpansion
|
||||
SET "_pref=!_line: =!"
|
||||
SET "_pref=!_line: =!"
|
||||
IF /I "user_pref"=="!_pref:~0,9!" (
|
||||
FOR /F "delims=," %%X IN ("!_pref!") DO (SET "_pref=%%X")
|
||||
SET _pref=!_pref:"=""!
|
||||
|
Loading…
Reference in New Issue
Block a user