Driver Uninstall Script

Script to Uninstall Driver

I would recommend running the CMD window as Administrator. Copying the commands and pasting them directly in the CMD window. It seems to have worked before, and this way the customer doesn't have the script itself.

Alternatively you can copy these commands and save them in a file with .bat at end and run it as such.

::Registry Clean up

reg delete "HKLM\SOFTWARE\Wow6432Node\Telos​ ​Systems\axiawow" /f

reg delete "HKLM\SOFTWARE\Wow6432Node\ASIO\Axia​ ​ASIO​ ​Driver" /f

reg delete "HKLM\SYSTEM\CurrentControlSet\services\axiaadvd" /f

reg delete "HKLM\SYSTEM\CurrentControlSet\services\axiagpr" /f

reg delete "HKLM\SYSTEM\CurrentControlSet\services\axialwrd" /f

reg delete "HKLM\SYSTEM\CurrentControlSet\services\AXIASP" /f

reg delete "HKLM\SYSTEM\CurrentControlSet\services\axiawow" /f

::Searching and Deleting all other files

del /F "C:\Windows\SysWOW64\tlscsp.dll"

del /F "C:\Windows\SysWOW64\tlslwlib.dll"

del /F "C:\Windows\SysWOW64\axiaadvd.exe"

del /F "C:\Windows\SysWOW64\axiaadvd.log"

del /F "C:\Windows\SysWOW64\axiaasio.dll"

del /F "C:\Windows\SysWOW64\axiagpr.exe"

del /F "C:\Windows\SysWOW64\axiagpvk.exe"

del /F "C:\Windows\SysWOW64\axialwrd.exe"

::This will delete the conf that contains SRC/DST/GPIO

del /F "%ProgramData%\Axia\lwr.conf"

/f and /F stand for Force, you can remove this if you'd like.