免费提供的.net 应用程序的安装引导程序,自动安装ie6,mdac27,.net framework,欢迎使用。

NaZiChong 2002-11-26 12:42:06
下载链接:
http://groups.msn.com/mjjqn41mae5o2ildd9fk0rf460/%E6%96%87%E4%BB%B6/Setup.zip

解压后有2个文件:setup.exe 和 setup.ini
setup.ini使用方法:

[Bootstrap]
Msi=Setup.msi //安装包
LanguageDirectory=zh-CHS
ProductName= 2008奥运会订票系统 //应用程序名称
DialogText= 确定要安装 2008奥运会订票系统 吗? //是否开始安装对话框文本
CaptionText= 2008奥运会订票系统 安装程序 //标题文字
ErrorCaptionText= 安装错误 //安装错误时的标题文字
FxInstallerPath=.\Support\dotNetFramework //框架安装路径
IEInstallerPath=.\Support\IE60 //IE6安装路径
MDACInstallerPath=.\Support\MDAC27 //MDAC2.7安装路径

请大家多提意见!!
...全文
72 172 打赏 收藏 转发到动态 举报
写回复
用AI写文章
172 条回复
切换为时间正序
请发表友善的回复…
发表回复
HUBSX 2003-04-17
  • 打赏
  • 举报
回复
hubsx@163.com
usxue 2003-04-17
  • 打赏
  • 举报
回复
usxue@163.com
谢谢!!!
NaZiChong 2003-04-11
  • 打赏
  • 举报
回复
http://expert.csdn.net/Expert/topic/1646/1646052.xml?temp=.9609644
fywl001 2003-04-11
  • 打赏
  • 举报
回复
请问我能不能算最后一批啊,急需,谢谢了
fywl002@hotmail.com
多谢大哥了
ghlanmao 2003-04-07
  • 打赏
  • 举报
回复
下载地址:http://www.csdn.net/cnshare/soft/15/15502.shtm
大家自己去下啊!!!
xyn668 2003-04-07
  • 打赏
  • 举报
回复
xyn168@yahoo.com.cn谢谢,加源码
layerr 2003-04-07
  • 打赏
  • 举报
回复
ly@cqit.com.cn
谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢
FengLinXp 2003-04-07
  • 打赏
  • 举报
回复
ljw@dttech.net
谢谢
JohnHu 2003-04-07
  • 打赏
  • 举报
回复
fireboy@vip.sina.com,
谢谢
luohzad 2003-04-07
  • 打赏
  • 举报
回复
不知道现在是第几批,,

给我发一份,,,谢谢...
2000LHZH@21cn.com
wxjUN 2003-04-07
  • 打赏
  • 举报
回复
看来是太晚了,已经受到的兄弟,能转发一份给我吗?

wxjun@hxtoy.com
benbencatrabbit 2003-04-07
  • 打赏
  • 举报
回复
我是第几批拉,还可以马?
benbencat@mail.sc.cninfo.net
alien705 2003-04-07
  • 打赏
  • 举报
回复
拜托!
好想你给我的帮助!
alien705@sina.com
crocus 2003-04-07
  • 打赏
  • 举报
回复
还能赶上吗?
samples@163.com
xiaowangsong 2003-04-07
  • 打赏
  • 举报
回复
再麻烦发一批把
先谢了
xiaowangsong@163.com
ghlanmao 2003-04-07
  • 打赏
  • 举报
回复
to:NaZiChong (不知NaZiChong是否还有到这来?!)
bug? 求教/讨论研究
小弟下载到手了,但是在我的开发环境中(winxp + vs.net)使用好象有些问题:
如上面DannyChen所提:
---------------------------------------------------------------
我也是像你所说的那样做了,结果它弹出一个对话框,上面说:
命令行参数不正确
windows installer。2.00.2600.0版
版权所有(C) 2000 Microsoft corporation。
保留所有权利。
本软件部分内容系基于Independent JPEG
Group 的工作。
然后又弹出对话框说。。。系统安装失败,如有问题,请与。。。联系
---------------------------------------------------------------

经过研究,我猜测NaZiChong大哥是在bootstrapper的基础上修改的,因为,我在使用bootstrapper的过程中遇到相同的问题:
%s Setup has failed. If the problem persists, please contact Product Support.
不知其他哥们在使用改安装程序(或bootstrapper)时有没有遇到问题,反正我就没成功过。
跟踪代码发现:bootstrapper调用GetFileVersionInfo取dotnetfx.exe文件的版本出现问题,【主版本号】.【次版本号】=1.0没错,但是VS_FIXEDFILEINFO并没有提供【内部版本号】.【专用部件号】的信息,而bootstrapper中用了dwFileVersionLS来计算出版本信息dwFileVersionLS。查msdn对dwFileVersionLS的描述(dwFileVersionMS
Specifies the most significant 32 bits of the file's binary version number. This member is used with dwFileVersionLS to form a 64-bit value used for numeric comparisons. ),我的理解是:dwFileVersionLS和dwFileVersionLS仅用于版本的数值比较(也许dwFileVersionLS也包含特定意义,只是msdn没说)。接着,bootstrapper又尝试读取注册表"SOFTWARE\Microsoft\.NETFramework\policy\v1.0"下名称为dwFileVersionLS的键的值是否存在,以进一步判断该版本的.net framework是否已经安装。由于前边取不到正确的内部版本号,所以bootstrapper尝试运行dotnetfx.exe /q:a /c:"install /l /q" 进行后台安装dotnet framework。这样,在没有安装过dotnet framework的机器上应该可以正常安装,而在已经安装该版本(或更高版本)的.net framework的机器就老出问题!
修正该问题的关键在于:如何正确取到dotnetfx.exe的内部版本号。小弟从早上找到现在,甚至从msdn网站down的getVers.exe都无法正确取到。郁闷。get_FileVersion()应该可以,我目前正在研究中……
batlee 2003-04-06
  • 打赏
  • 举报
回复
tonylee@vip.sina.com
very thanks!
popmonkey 2003-04-06
  • 打赏
  • 举报
回复
还能收到吗?
rungoboy@21cn.com
loveprograming 2003-04-06
  • 打赏
  • 举报
回复
spreadwall@vip.etang.com
谢谢!
armu80830 2003-04-06
  • 打赏
  • 举报
回复
lzy80830@sohu.com
加载更多回复(152)

111,125

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Creator Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧