Hi there

When i try and install my msi on windows vista, my bootstrapper looks for
vb5runtime, if its not found its start the setup of the vb5runtime, this
works fine, however when i click the install for the vb5runtime i get the
following error

Setup has detected that the publisher of file
'C:\Users\Craig0ss\AppData\Local\Temp\VSD2B57.tmp\VB5Runtime\msvbvm50.exe'
cannot be verified.

if i try an install the vb5runtime manualy it works fine but it doesnt when
exectuted from my setup.exe, i thought it may be a problem with UAC so i
tried it with UAC disabled but to no evail, i also tried running the
setup.exe as admin but again to no evail.

here is the code for my bootstrapper, hopefully someone can help me with
this issue as im stuck :S


<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
  <PropertyGroup>
   
<AppFileFullPath>C:\Projects\optisoft\Installer\Optisoft\NewBootStrapper\Optisoft.msi</AppFileFullPath>
  </PropertyGroup>
  <ItemGroup>
  <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
      <ProductName>.NET Framework 2.0</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="Microsoft.Data.Access.Components.2.8">
      <ProductName>Microsoft Data Access Components 2.8</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="Microsoft.Windows.Installer.3.1">
      <ProductName>Windows Installer 3.1</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="MSJet35">
      <ProductName>MSJet35</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="VB5Runtime">
      <ProductName>VB5Runtime</ProductName>
    </BootstrapperFile>  
    <BootstrapperFile Include="VB6Runtime">
      <ProductName>VB6Runtime</ProductName>
    </BootstrapperFile>
 
  </ItemGroup>
  <Target Name="Bootstrapper">
    <GenerateBootstrapper ApplicationFile="Optisoft.msi" 
        ApplicationName="Optisoft Enteprise" 
        BootstrapperItems="@(BootstrapperFile)" 
        ComponentsLocation="Relative" 
        Culture="en" 
        FallbackCulture="en-GB" 
        CopyComponents="True" 
        Validate="False" 

OutputPath="c:\projects\optisoft\installer\optisoft\newbootstrapper\output\" 
        />
  </Target>
</Project>

Thanks

-- 
View this message in context: 
http://www.nabble.com/Setup-has-detected-that-the-publisher-of-file-%27C%3A%5CUsers%5CCraig0ss%5CAppData%5CLocal%5CTemp%5CVSD2B57.tmp%5CVB5Runtime%5Cmsvbvm50.exe%27-cannot-be-verified.-tf4527002.html#a12916759
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to