2010-04-27 55 views

回答

0

您可以添加額外的對話框,但我不認爲有一種方法可以將錯誤重定向到它們。有了Studio安裝項目,我認爲你會陷入內置的錯誤處理。

您需要使用InstallShield等第三方產品,或者手動編輯安裝程序(MSI)以獲得所需的功能。

1

如果我理解正確:

不完全是你的軟件,但是,你可以處理你的軟件的先決條件造成的大部分時間錯誤的錯誤。您必須先到達必備軟件包文件的位置。通常情況下,這將是「C:\ Program Files \ Microsoft SDKs \ Windows \ v6.0A \ Bootstrapper \ Packages \」。找到你的軟件包文件夾,進入,有一個名爲「en」的文件夾,裏面有一個名爲「package.xml」的xml文件。用文本編輯器打開它,你會看到:

<InstallChecks> 
    <RegistryCheck Property="DotNet35SP" Key="HKLM\Software\Microsoft\NET Framework Setup\NDP\v3.5" Value="SP" /> 
</InstallChecks> 

<!-- Defines how to invoke the setup for .NET Framework redist --> 
<Commands Reboot="Defer"> 
    <Command PackageFile="dotNetFx35setup.exe" 
     Arguments=' /lang:enu /passive /norestart' 
     EstimatedInstalledBytes="30000000" 
     EstimatedTempBytes="30000000"> 

     <!-- These checks determine whether the package is to be installed --> 
     <InstallConditions> 
      <!-- This indicates .NET Framework is already installed --> 
      <BypassIf Property="DotNet35SP" Compare="ValueGreaterThanOrEqualTo" Value="1"/> 

      <!-- Block install if user does not have admin privileges --> 
      <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired"/> 
      <!-- Block install on less than Windows XP SP2 --> 
      <FailIf Property="VersionNT" Compare="VersionLessThan" Value="5.1.2" String="InvalidPlatformWinNT"/> 

      <!-- Block install on W2K3 with no service pack --> 
      <FailIf Property="VersionNT" Compare="VersionEqualTo" Value="5.2.0" String="InvalidPlatformWinNT"/> 

      <!-- Block install if the platform is IA-64 --> 
      <FailIf Property="ProcessorArchitecture" Compare="ValueEqualTo" Value="IA64" String="InvalidPlatformArchitecture" /> 
     </InstallConditions> 

     <ExitCodes> 
      <ExitCode Value="0" Result="Success"/> 
      <ExitCode Value="1602" Result="Fail" String="UserCancelled"/> 
      <ExitCode Value="1603" Result="Fail" String="GeneralFailure"/> 
      <ExitCode Value="3010" Result="SuccessReboot"/> 
      <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" /> 
     </ExitCodes> 

    </Command> 
</Commands> 

<!-- Defines a localizable string table for error messages--> 
<Strings> 
    <String Name="DisplayName">.NET Framework 3.5 SP1</String> 
    <String Name="Culture">en</String> 
    <String Name="AdminRequired">Administrator permissions are required to install .NET Framework 3.5 SP1. Contact your administrator.</String> 
    <String Name="InvalidPlatformWinNT">Installation of the .NET Framework 3.5 SP1 requires Windows XP SP2, Windows 2003 SP1, Windows Vista, or later. Contact your application vendor.</String> 
    <String Name="InvalidPlatformArchitecture">This version of the .NET Framework 3.5 SP1 is not supported on an IA-64 operating system. Contact your application vendor.</String> 
    <String Name="UserCancelled">The user has cancelled the installation. .NET Framework 3.5 SP1 has not been installed.</String> 
    <String Name="GeneralFailure">A failure occurred attempting to install .NET Framework 3.5 SP1.</String> 
    <String Name="DotNetFX35SP1Exe">http://go.microsoft.com/fwlink/?linkid=118076</String> 
</Strings> 

的「InstallConditions」標記之間,您可以在「弦」標記之間爲前提的install.Then添加/刪除條件,您可以自定義錯誤消息。

欲瞭解更多信息:http://msdn.microsoft.com/en-us/library/ms229223.aspx