Basic package of Visio Viewer 2007 using iexplore.exe entry point.
The following script in the build directory somehow prevents launch of iexplore.exe on W7:
Function OnFirstParentStart
On Error Resume Next
Dim Reg
Set WSHShell = CreateObject("Wscript.Shell")
Reg = WSHShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Artek\Build\Core\MachineName")
If Reg = "" Then ExitProcess 0
End Function
If script is removed IE launches...
cmd.exe entry point works fine
iexplore launches from command line via cmd.exe entry point
It is worth to mention this package works without problem on Win XP SP3 IE6
Any thoughts?