没有添加过 dotnetfx.exe .不过我做安装程序的时候,系统会自动分析出需要 dotnetfx.exe 自动给我增加进去了.至于 mdac_typ.exe 没有用过,不清楚.

解决方案 »

  1.   

    我也试过用.net的安装程序,也没有成功,不知道为什么
      

  2.   

    dotnetfx.exe 是.net framework 的安装程序,web程序必须在.net框架下才能正常运行。我必须把他添加到“自定义操作中”,可是系统报错。请问如何操作,能让系统自动分析并且自动添加?
      

  3.   

    我用过,成功了,当时只是试了一试。是不是你的设置有问题,好象.net下的安装程序也需要dotnetfx.exe 才能运行。
      

  4.   

    用installshield developer 8.0 多好...特方便  生成一个msi的文件....
      

  5.   

    对,同意楼上,installshield非常好用,生成MSI
      

  6.   

    you can try:delete "/install" argument or set other dotnetfx.exe arguments(you can get it from execute dotnetfx.exe with "/?")Note:
    this is not a good idea, if your solution include custom install class!you can write an unmanaged program to install dotnetfx and mdac.Good luck!
      

  7.   

    看在是你程序MM份上~~~
    给个电子邮件,发送个可自动检测目标机子上是否有装.net,没有会自动安装~~~的setup程序~~~
      

  8.   

    我就是想知道/install的属性应该改成什么。请各位指教!!
      

  9.   

    The .NET Framework redistributable package uses a Windows Installer package that wraps it into the single, self-extracting executable file Dotnetfx.exe. The Dotnetfx.exe executable file launches Install.exe, which performs platform checks, installs Windows Installer 2.0 if necessary, and then launches the Windows Installer package (.msi file). Table 1 describes the command line options you can specify when installing Dotnetfx.exe. To specify options when installing Dotnetfx.exe, you must pass the options to the Install.exe wrapper using the /c: option.Syntaxdotnetfx [/q:a] [/c:"Install [/l][/q]"]
    Table 1. Command line options for installing Dotnetfx.exeOption Description 
    /l Creates the setup log, netfx.log, in the %temp% directory. Error codes returned from Dotnetfx.exe are written to this log. 
    /q Specifies quiet install mode. Suppresses the display of the setup user interface. For a quiet install, you must also specify the Dotnetfx.exe /q:a option to suppress the extraction user interface. You should use the Windows Add/Remove Programs option to uninstall a .NET Framework application that hosts Dotnetfx.exe. This ensures that Dotnetfx.exe will not be uninstalled independently of an application that is dependent on it in order to run.Usage Examples
    The following command installs the Dotnetfx.exe redistributable package.dotnetfx /c:"install"
    The following command performs a silent install of the Dotnetfx.exe redistributable package.dotnetfx /q:a /c:"install /q"
      

  10.   

    请问哪里有installshield developer 8.0的下载地址,我想试一下