|
-
Jul 30th, 2004, 07:10 PM
#1
Thread Starter
Fanatic Member
Deployment issue...
Hello,
I have created an install and am dealing with the .NET Framework issue. My plan at the moment is just to have the Framework on my CD and have the user install it manually as suggested here:
http://msdn.microsoft.com/library/de...distdeploy.asp
Referring to the message you get when the .NET Framework is not installed.......
I have created the "custom" message as this page suggest, but when I click on the setup file and get the message, I still have the YES and NO buttons on my dialog. With the original message, if you clicked YES, it took you to Microsoft's website so that you could download the Framework. Obviously, I just want to display a message and have the user click OK. Does anyone know how to customize this dialog?
I notice in the Setup.ini file that is created it looks like this..
[MSILoader]
MSIFileName=MyApp Install.msi
[FXSection]
SupportedRuntimes=1.1.4322
InstallUrl=http://go.microsoft.com/fwlink/?LinkId=9832
Message=This setup requires the .NET Framework. Please install the .NET Framework by running the file Dotnetfx.exe, which can be found in the NetInstall directory on this CD, and then run this setup again.
How can I have the "InstallURl" point to the users cd drive?
Thanks!
Last edited by birthjay; Jul 30th, 2004 at 08:28 PM.
-
Jul 30th, 2004, 08:56 PM
#2
Frenzied Member
Don't know if this will help or not, but a file can be loaded through IE like file:///C:/temp/My%20File.txt - the "%20" is a space - the hex value.
Of course this would be your local file c:\temp\My File.txt
-
Jul 31st, 2004, 12:53 AM
#3
Just a guess but:
Code:
MSILoader]
MSIFileName=MyApp Install.msi
[FXSection]
SupportedRuntimes=1.1.4322
InstallUrl=MyFolderOnCDRoot\MYHELP.html
Message=This setup requires the .NET Framework. Please install the .NET Framework by running the file Dotnetfx.exe, which can be found in the NetInstall directory on this CD, and then run this setup again.
(if that doesnt work try a "\" in front of MyFolderOnCDRoot
or if the file is on the cd root try "InstallUrl=MyHelp.html" or "InstallUrl=\MyHelp.html"
Tips:
- Google is your friend! Search before posting!
- Name your thread appropriately... "I Need Help" doesn't cut it!
- Always post your code!!!! We can't read your mind!!! (well, at least most of us!)
- Allways Include the Name and Line of the Exception (if one is occuring!)
- If it is relevant state the version of Visual Studio/.Net Framwork you are using (2002/2003/2005)
If you think I was helpful, rate my post  IRC Contact: Rizon/xous ChakraNET/xous Freenode/xous
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|