|
Automated Uninstall of Workstation Agent from Central Location |
|
Pearl Echo 6.0 |
|
All Builds |
To increase Pearl Echo Workstation Agent security, the Pearl Echo Service authenticates Pearl Echo Workstation uninstall requests. This requires the Pearl Echo password to be provided during an uninstall process. Pearl Software has created a utility to be run with command line parameters to assist in automating the Pearl Echo Workstation software uninstall.
- Download the Pearl Echo uninstall utility.
- Run the uninstall utility with Administrative privilege as follows: ec6spun.exe 1+yourpassword
- After reboot, re-run the utility with Administrative privilege as follows: ec6spun.exe 2+yourpassword
The following demonstrates running the uninstall utility from a login script:
@echo off
REM On first run, remove Pearl Echo 6.0 network components & reboot client
if exist c:\firsttime-v6.txt goto vmiddle
copy \\YourServerName\YourShareName\firsttime-v6.txt c:\firsttime-v6.txt
start /D"\\YourServerName\YourShareName" ec6spun.exe 1+yourpassword
goto vend
:vmiddle
REM On second run, complete Pearl Echo 6.0 workstation file removal
if exist c:\secondtime-v6.txt goto vend
copy \\YourServerName\YourShareName\secondtime-v6.txt c:\secondtime-v6.txt
start /D"\\YourServerName\YourShareName" ec6spun.exe 2+yourpassword
:vend
|