PDA

View Full Version : Can I install my VB DLLs without the VB installer?


SAHMX
05-18-2004, 03:02 AM
I already made a program that works around the firewall to give you remote access to the persons computer. You can do anything. It's really cool. I made it in VB so it needs shared files and stuff. The VB installer does this but... It prompts the user. I want to have it install with the simple click of the file. How can I do this when I have to get all these shared files on thier PC? It's going to be bound to an MSWORD doc so it can't have a window or anything. I know it would be simple if I knew what to do with the DLLs that have to register and stuff. Can I just put them in thier paths or what?

FILES NEEDED:

ACTION: SystemFile: "C:\WINDOWS\system32\VB6STKIT.DLL"

ACTION: SystemFile: "C:\WINDOWS\system32\COMCAT.DLL"

ACTION: SystemFile: "C:\WINDOWS\system32\stdole2.tlb"

ACTION: SystemFile: "C:\WINDOWS\system32\asycfilt.dll"

ACTION: SystemFile: "C:\WINDOWS\system32\olepro32.dll"

ACTION: SystemFile: "C:\WINDOWS\system32\oleaut32.dll"

ACTION: SystemFile: "C:\WINDOWS\system32\msvbvm60.dll"

ACTION: DllSelfRegister: "C:\WINDOWS\SYSTEM32\COMCAT.DLL"

ACTION: TLBRegister: "C:\WINDOWS\SYSTEM32\stdole2.tlb"

ACTION: DllSelfRegister: "C:\WINDOWS\SYSTEM32\olepro32.dll"

ACTION: DllSelfRegister: "C:\WINDOWS\SYSTEM32\oleaut32.dll"

ACTION: DllSelfRegister: "C:\WINDOWS\SYSTEM32\msvbvm60.dll"

ACTION: SharedFile: "C:\WINDOWS\System32\MSINET.OCX"

ACTION: SharedFile: "C:\WINDOWS\System32\tfosorciM.exe"

ACTION: DllSelfRegister: "C:\WINDOWS\System32\MSINET.OCX"

I would just transfer them where they say they want to go in C++, but the Dlls have to register! Some other stuff might need to as well. How would I go about doing this, assuming they don't have any of these files? I want a prompt free install. They can't know this even ran! Thanks!

PS: This is not for hacking; my program doesn't even have any functions that will give you access to thier passwords. This is just to mess with my friends... I also like to do stuff like this to learn how. Very interesting

LabelTN
05-18-2004, 03:29 AM
Sure, you have to use an install software, like InstallShield, or Install-Us (install-us dot com but the free version is a trial with an expiration date into the setups you made).

It will register the dlls by itself.

stuka
05-18-2004, 02:36 PM
***PLEASE DO NOT CROSS POST***

SAHMX
05-18-2004, 04:46 PM
I'm sorry. I thought that since 2 kinds of people might visit the two forums for different languages, it might be OK. It applied to C++ more than VB, but VB people might have experience doing it...