bybordo Posted June 10, 2014 Share Posted June 10, 2014 i want delete a running dll file with autoit. i try tihs but not working: #RequireAdmin ShellExecute("C:\WINDOWS\system32\regsvr32.exe", "/u /s IDMShellExt64.dll") FileDelete(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll") Link to comment Share on other sites More sharing options...
javiwhite Posted June 10, 2014 Share Posted June 10, 2014 it might have protection such as read only or system attributes. you should try removing attributes from the DLL before trying to delete it and see how successful that is. Try this: #RequireAdmin ShellExecute("C:\WINDOWS\system32\regsvr32.exe", "/u /s IDMShellExt64.dll") FileSetAttrib(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll","-RS") FileDelete(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll") Although i haven't tested this, I've run into attribute issues with fileDelete before, So i'd assume this is the issue you're having also. -Javi give a man an application, and he'll be frustrated for the day, Teach him how to program applications and he'll be frustrated for a lifetime. Link to comment Share on other sites More sharing options...
bybordo Posted June 10, 2014 Author Share Posted June 10, 2014 it might have protection such as read only or system attributes. you should try removing attributes from the DLL before trying to delete it and see how successful that is. Try this: #RequireAdmin ShellExecute("C:\WINDOWS\system32\regsvr32.exe", "/u /s IDMShellExt64.dll") FileSetAttrib(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll","-RS") FileDelete(@ProgramFilesDir & "\Internet Download Manager\IDMShellExt64.dll") Although i haven't tested this, I've run into attribute issues with fileDelete before, So i'd assume this is the issue you're having also. -Javi not working Link to comment Share on other sites More sharing options...
BrewManNH Posted June 10, 2014 Share Posted June 10, 2014 What happens if you run the ShellExecute line in a command prompt? What do you get if you omit the "/s" in the line when you do that? If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
bybordo Posted June 10, 2014 Author Share Posted June 10, 2014 i tried with command prompt and not happened and it gives error without /s Link to comment Share on other sites More sharing options...
BrewManNH Posted June 10, 2014 Share Posted June 10, 2014 So, running the command manually does the same thing as running it in AutoIt? What error do you get when you run it without the /s? You really need to give more information that what you're giving right now. It's like pulling teeth. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
bybordo Posted June 10, 2014 Author Share Posted June 10, 2014 this is without /s. it means: "idmshellext64.dll module installed but DllUnregisterServer calling was error with 0x80070002 code." contact us for this problem bla bla bla... do you want another information ? Link to comment Share on other sites More sharing options...
BrewManNH Posted June 10, 2014 Share Posted June 10, 2014 Try using the full path to the DLL, it looks like it's a 64bit program but regsvr32 is looking in the 32 bit Program Files folder for it. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
bybordo Posted June 10, 2014 Author Share Posted June 10, 2014 i was already doing this Link to comment Share on other sites More sharing options...
BrewManNH Posted June 10, 2014 Share Posted June 10, 2014 Your code doesn't show that at all. It says nothing about the path to the DLL. That error message means it can't find the file. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
bybordo Posted June 10, 2014 Author Share Posted June 10, 2014 what can i write for path i dont understand Link to comment Share on other sites More sharing options...
BrewManNH Posted June 10, 2014 Share Posted June 10, 2014 I'm not writing your script for you, you clearly have no idea what it is you're saying in any of these posts. First I told you to use the path to the DLL in the line, you said you did. I came back saying your code doesn't show you using the path at all, and now you're telling me you don't know WTF a path is? Good luck, I'm out. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
willichan Posted June 10, 2014 Share Posted June 10, 2014 You could try using the PendingFileRenameOperations registry key to have the file deleted on bootup. A quick google search turned up this post to learn how to use it. My UDFs: Barcode Libraries, Automate creation of any type of project folder, File Locking with Cooperative Semaphores, Inline binary files, Continue script after reboot, WinWaitMulti, Name Aggregator, Enigma, CornedBeef Hash Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now