In SEP 12 and the new sylinkdrop.exe tool can you set the sylink.xml location in a command switch so I could use psexec or something to run remotely against a list? This way I can avoid using the service stop and file replace method which strangely seemed to convert devices to user mode, or at least the console reported them in User mode even though the registry entries on the clients showed the preferred mode = 1.
Where can i suggest a feature? I want to be able to select a large number of user mode accounts and switch them to Computer mode vs. one at a time. I just dont have time to write SQL/VBScript/ASP in order to correct database data
@Gorilla2k8
I have done this several times using a batch file converted to an EXE and then using hyena or some sort of remoteinstaller to deploy. I included an example of a batch.
@echo off
if exist "%programfiles%\symantec antivirus\vptray.exe" goto SAV10
if exist "%programfiles%\symantec\symantec endpoint protection\smc.exe" goto SYMANTEC
if exist "%programfiles(x86)%\symantec\symantec endpoint protection\smc.exe" goto SYMANTEC64
if exist "%programfiles%\symantec antivirus\smc.exe" goto SEPSAV
goto END
:SYMANTEC
"%programfiles%\symantec\symantec endpoint protection\smc.exe" -stop
ping -n 15 127.0.0.1 > nul
if exist "%programfiles%\symantec\symantec endpoint protection\sylink.xm_" del /Q "%programfiles%\symantec\symantec endpoint protection\sylink.xm_"
ren "%programfiles%\symantec\symantec endpoint protection\sylink.xml" sylink.xm_
copy \\sharepath\sep\sylink.xml "%programfiles%\symantec\symantec endpoint protection"
"%programfiles%\symantec\symantec endpoint protection\smc.exe" -start
goto END
:SYMANTEC64
"%programfiles(x86)%\symantec\symantec endpoint protection\smc.exe" -stop
ping -n 15 127.0.0.1 > nul
if exist "%programfiles(x86)%\symantec\symantec endpoint protection\sylink.xm_" del /Q "%programfiles(x86)%\symantec\symantec endpoint protection\sylink.xm_"
ren "%programfiles(x86)%\symantec\symantec endpoint protection\sylink.xml" sylink.xm_
copy \\sharepath\sep\sylink.xml "%programfiles(x86)%\symantec\symantec endpoint protection"
"%programfiles(x86)%\symantec\symantec endpoint protection\smc.exe" -start
goto END
:SEPSAV
"%programfiles%\Symantec Antivirus\smc.exe" -stop
ping -n 15 127.0.0.1 > nul
if exist "%programfiles%\Symantec Antivirus\sylink.xm_" del /Q "%programfiles%\symantec antivirus\sylink.xm_"
ren "%programfiles%\symantec Antivirus\sylink.xml" sylink.xm_
copy \\sharepath\sep\sylink.xml "%programfiles%\Symantec Antivirus"
"%programfiles%\Symantec Antivirus\smc.exe" -start
goto END
:SAV10
goto END
:END