Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Package and Deployme
Name: CRaig` Date: November 26, 2002 at 09:33:31 Pacific OS: - CPU/Ram: -
Comment:
Hello, I have created a Visual C++ application that I need to package for installation...I have used the Package and Deployment wizard before with Visual Basic but am not sure what I should use for Visual C++.
Name: Jeff J Date: November 26, 2002 at 15:38:54 Pacific
Reply:
If you plan on targetting Win2K/XP, and your app requires updated versions of system DLLs or needs to register OCXs, you really need a fairly sophisticated installer. The "Micro$oft Installer" is available for free at msdn.microsoft.com, though it will not be quite as simple as the wizards. If you find another free installer on the web, make sure it can create the .cat files needed to allow bypassing the Windows File Protection feature on newer Windows platforms.
If you do not need to update system files or register anything, you can always just zip everything up, along with the usual README, and leave it at that. You can also make a WinZip self-extracting archive, which can also run a script after unpacking. That way you can extract to a specified directory, and even put a shortcut on the start menu or desktop.
Summary: >> Last note: instead of install the needed files seperately like what above, you can make a setup package for your project including all above needed files, then just install your application on the ...
Summary: hey everybody. I have been working hard on an application in VBasic. I need to deploy it to many users. I would like for the users to be able to download one single setup.exe program. I tried usin...
Summary: Does anyone know of any free packaging software that can package a Visual Basic program? I don't want to use the package and deployment wizard fom Visual Basic. Please provide me the website so I can ...