Saturday, February 12, 2011

Sequencing BPC SqueezeItPlus 1.2

Type of Sequencing : MNT
Sequencer : 4.6(x86)
OS : Win7
Error : When application is launched it throws the below following error:



Solution : The main EXE internally calls another exe GSW32.exe. So we can solve this issue in two ways:

1) During Configuration phase add GSW32.exe as a shortcut and edit the OSD as shown below:

 <SCRIPT EVENT="LAUNCH" PROTECT="TRUE" TIMING="PRE" WAIT="TRUE" EXTERN="TRUE">
   <SCRIPTBODY LANGUAGE="Batch">sfttray /launch "Graphics Server"</SCRIPTBODY>
  </SCRIPT>
<SCRIPT EVENT="SHUTDOWN" PROTECT="TRUE" TIMING="POST" WAIT="TRUE" EXTERN="TRUE">
   <SCRIPTBODY LANGUAGE="Batch">taskkill /IM Gsw32.exe</SCRIPTBODY>
  </SCRIPT>

2) Add a pre-Launch script inside the OSD to run GSW32.exe

<SCRIPT EVENT="LAUNCH" PROTECT="TRUE" TIMING="PRE" WAIT="TRUE" EXTERN="TRUE">
   <SCRIPTBODY LANGUAGE="Batch">path of Gsw32.exe</SCRIPTBODY>
  </SCRIPT>

No comments:

Post a Comment