This is ONLY if the SPTD 1.29 installer disappears after you press OK during Daemon Tools setup under Windows Vista...
I've only tested under my Vista x64 build 5728 setup.
If you previously had a version of SPTD installed on Vista for whatever reason, you may have a lingering driver at c:\windows\system32\drivers\stpd.sys that is older than version 1.29, as well as a 'sptd' (driver) service that will not start...
You can delete "C:\WINDOWS\System32\Drivers\sptd.sys" manually, and then run "sc delete sptd" to remove the service.
Here's a batch file to handle it;
@echo off
setlocal
set sptd.sys=%windir%\system32\drivers\sptd.sys
cacls "%sptd.sys%" /G Everyone:F
attrib -r -s -h "%sptd.sys%"
del /f "%sptd.sys%"
sc delete sptd
Disclaimer; I take no responsibility for anything. Good luck.
I've only tested under my Vista x64 build 5728 setup.
If you previously had a version of SPTD installed on Vista for whatever reason, you may have a lingering driver at c:\windows\system32\drivers\stpd.sys that is older than version 1.29, as well as a 'sptd' (driver) service that will not start...
You can delete "C:\WINDOWS\System32\Drivers\sptd.sys" manually, and then run "sc delete sptd" to remove the service.
Here's a batch file to handle it;
@echo off
setlocal
set sptd.sys=%windir%\system32\drivers\sptd.sys
cacls "%sptd.sys%" /G Everyone:F
attrib -r -s -h "%sptd.sys%"
del /f "%sptd.sys%"
sc delete sptd
Comment