koden Posted September 16, 2004 Author Posted September 16, 2004 aha...dubbel slash and cmd without exeYes install is gone... :-)But i didn't se any cmd window, but what the F... :_))))I'm very pleased...Thanks a lot..
koden Posted September 16, 2004 Author Posted September 16, 2004 I'm back :-))I have 2 folders i will deleteinstall and driversIf i use this:[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd /C RD %systemdrive%\\install /S /Q""Cleanup"="cmd /C RD %systemdrive%\\drivers /S /Q"the install folder is still there after reboot and drivers is goneIf I use this:[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd /C RD %systemdrive%\\install /S /Q"[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd /C RD %systemdrive%\\drivers /S /Q"the samethe install folder is still there after reboot and drivers is goneif i use this[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd /C RD %systemdrive%\\install /S /Q"install is goneHow do I delete 2 folders????
Tsunami Posted September 16, 2004 Posted September 16, 2004 This one's easy The point is, you're adding a value called Cleanup to the registry. What you're doing is first adding the value Cleanup, with the contens "cmd /C RD %systemdrive%\\install /S /Q". After that, you're adding the same value again (thus overwriting the previous value) with some other contents. I think I'm explaining it a bit too difficult, but here's what you gotta do:[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup1"="cmd /C RD %systemdrive%\\install /S /Q""Cleanup2"="cmd /C RD %systemdrive%\\drivers /S /Q"Now, first the command of Cleanup1 will be executed, and after that the command of Cleanup2. If you want to add more vaules, just name them Cleanup3, Cleanup4, etc.Hope you got it all sorted out now
Daimao Posted September 16, 2004 Posted September 16, 2004 Add this to a reg file:[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd.exe /C RD %systemdrive%\install /S /Q"And then make sure you import it to the registry somewhere. You can also use this code from a batch file:REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /V Cleanup /D "cmd.exe /C RD %systemdrive%\install /S /Q"I believe that should work is the ADD REG code still good or does it also have to have 2 \'s?
koden Posted September 17, 2004 Author Posted September 17, 2004 YES....1 and 2 after cleanup, and it is workingthanks again
Tsunami Posted September 17, 2004 Posted September 17, 2004 Add this to a reg file:[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]"Cleanup"="cmd.exe /C RD %systemdrive%\install /S /Q"And then make sure you import it to the registry somewhere. You can also use this code from a batch file:REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /V Cleanup /D "cmd.exe /C RD %systemdrive%\install /S /Q"I believe that should work is the ADD REG code still good or does it also have to have 2 \'s? It also needs the two slashes:REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /V Cleanup /D "cmd.exe /C RD %systemdrive%\\install /S /Q"
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