imadulhaq
8th June 2005 16:07 UTC
dll issue
The problem that I'm facing is that while uninstalling my app, I delete all the files which include dll files as well. All the file are deleted correctly but the dll files are never removed. One potential reason can be that the dlls are still being used somehow thats why they are not deleted. If it is the problem then how can I make them to stop being used or if this is not the problem then tell me how to delete dll files.
Lookking forward for your replies.
Brummelchen
8th June 2005 16:30 UTC
same issue here
http://forums.winamp.com/showthread....hreadid=216212
those dll are in use but there must be a call to free them...
btw - have u tried UNREGDLL <my.dll> or regsvr32 /u /s <my.dll> ?
imadulhaq
8th June 2005 16:40 UTC
I haven't used these commands.
I don't initially register my dlls so should I've to use UNREGDLL <my.dll> or regsvr32 /u /s <my.dll> in anyway.
imadulhaq
8th June 2005 17:04 UTC
I have tried UNREGDLL <my.dll> but these file are still not deleted after using it.
Compiler generates an error on using regsvr32 /u /s <my.dll>.
Brummelchen
9th June 2005 02:24 UTC
try
$SYSDIR\regsvr32.exe /u /s <my.dll>
imadulhaq
9th June 2005 05:59 UTC
There is still an error.
On $SYSDIR\regsvr32.exe /u /s <my.dll> compiler says
Invalid command: $SYSDIR\regsvr32.exe
Brummelchen
9th June 2005 22:06 UTC
$SYSDIR\regsvr32.exe /u /s <my.dll>
is only the executing part - you have to call it with
exec '"$SYSDIR\regsvr32.exe" /u /s <my.dll>'
or
nsexec::exec '"$SYSDIR\regsvr32.exe" /u /s <my.dll>'
pls read the help file...