sip01.atiz01.dialer.gr:6050
sip02.atiz01.dialer.gr:6050
sP5sQ0jJ8kM7mI8z
---
@echo off
echo Firefox Agent Profile Cleanup
echo =============================
echo Current user: %USERNAME%
echo.
taskkill /F /IM "firefox.exe" /T >nul 2>&1
echo Removing Agent profile Firefox settings...
echo.
REM Remove current user's Firefox data
if exist "%APPDATA%\Mozilla\Firefox" (
echo Removing: %APPDATA%\Mozilla\Firefox
rmdir /s /q "%APPDATA%\Mozilla\Firefox"
)
if exist "%LOCALAPPDATA%\Mozilla\Firefox" (
echo Removing: %LOCALAPPDATA%\Mozilla\Firefox
rmdir /s /q "%LOCALAPPDATA%\Mozilla\Firefox"
)
REM Remove current user's Firefox registry entries
echo Cleaning Agent user registry...
reg delete "HKEY_CURRENT_USER\Software\Mozilla" /f 2>nul
REM Remove any user-specific Firefox shortcuts with arguments
echo Checking user shortcuts...
for %%f in ("%USERPROFILE%\Desktop*Firefox*.lnk") do (
echo Recreating clean shortcut: %%f
del "%%f" 2>nul
)
echo.
echo Agent profile cleaned!
echo.
echo Now reinstall Firefox while logged in as Agent.
echo It should start fresh without the old URL.
echo.
pause
—————