Resetpass.bat For Symantec - 14 Download

If you have the SEP 14 management server installation files (e.g., SEP_14.3_All_Clients_EN.zip or the ISO), follow these steps:

Save this as resetpass.bat and run from an elevated Command Prompt. Adjust paths, product names, and installer location to match your environment. resetpass.bat for symantec 14 download

@echo off
REM resetpass.bat — Template to prepare SEP 14 for repair/reinstall
REM Run as Administrator
setlocal
REM -- Variables: adjust paths as needed
set SEP_SERVICES=SepMasterService Symantec Endpoint Protection
set SEP_INSTALL_DIR="C:\Program Files\Symantec\Symantec Endpoint Protection"
set SEP_BACKUP_DIR="C:\Temp\SEP_Backup_%DATE:~10,4%%DATE:~4,2%%DATE:~7,2%"
set SEP_INSTALLER="C:\Installers\SEP14\SEP_14_Setup.exe"
echo Creating backup folder %SEP_BACKUP_DIR%
mkdir "%SEP_BACKUP_DIR%"
echo Stopping Symantec services...
REM Stop known SEP services (service names may differ — verify via services.msc)
sc stop "Smc"  >nul 2>&1
sc stop "SepMasterService" >nul 2>&1
sc stop "Symantec Endpoint Protection" >nul 2>&1
timeout /t 3 /nobreak >nul
echo Backing up installation folder...
xcopy /e /i /y "%SEP_INSTALL_DIR%" "%SEP_BACKUP_DIR%\ProgramFiles" >nul
echo Exporting relevant registry keys...
reg export "HKLM\SOFTWARE\Symantec" "%SEP_BACKUP_DIR%\HKLM_SOFTWARE_Symantec.reg" /y >nul 2>&1
reg export "HKLM\SYSTEM\CurrentControlSet\Services\Smc" "%SEP_BACKUP_DIR%\HKLM_Smc.reg" /y >nul 2>&1
REM Optionally rename local configuration to force recreation (use with caution)
echo Renaming local config folder to force recreation...
if exist "%ProgramData%\Symantec\Symantec Endpoint Protection" (
  ren "%ProgramData%\Symantec\Symantec Endpoint Protection" "Symantec Endpoint Protection.old" 2>nul
)
echo Launching SEP installer for Repair/Uninstall (if present)...
if exist "%SEP_INSTALLER%" (
  start "" /wait "%SEP_INSTALLER%" /repair
) else (
  echo Installer not found at %SEP_INSTALLER%. Please run installer manually.
)
echo Done. Review logs and re-enroll client as needed.
endlocal
pause

Notes:

A: Yes, but the command differs. For SEP 12, use smc -resetpwd. For SEP 14, use the methods above. If you have the SEP 14 management server