To resolve this issue, either:
1. Resequence the package using the 4.6 SP1 (or greater) Sequencer
-or-
2. Open the package for upgrade in the Sequencer and locate the file <package root>\office14\msaccess.exe.config.
In the App-V 4.5 Sequencer, Select File then Open for Package Upgrade.... When the package loads, select Tools then Sequencing Wizard to begin monitoring.
In the App-V 4.6 SP1 Sequencer, choose File then Open... then select Update Application in Existing Package. Follow the wizard until you reach the Select Installer screen. There, choose Perform a custom installation. and click Next. Click Run... and then choose Notepad.exe.
Once the package is loaded, open msaccess.exe.config in Notepad and change these lines:
- <?xml version="1.0"?><!-- Microsoft AppVirt generated config file.--><configuration>
- <windows>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly><assemblyIdentity type="win32" name="Microsoft.VC90.CRT" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"/>
- <bindingRedirect oldVersion="9.0.30201.0-9.0.30729.4148" newVersion="9.0.30729.4148"/>
- </dependentAssembly></assemblyBinding>
- </windows>
- </configuration>
To
- <?xml version="1.0"?><!-- Microsoft AppVirt generated config file.--><configuration>
- <windows>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"/>
- <bindingRedirect oldVersion="9.0.20718.0-9.0.21022.8" newVersion="9.0.30729.4148"/>
- <bindingRedirect oldVersion="9.0.30201.0-9.0.30729.4148" newVersion="9.0.30729.4148"/>
- </dependentAssembly></assemblyBinding>
</windows>
</configuration>
Save the file, then save the package and redistribute.