Microsoft KB Archive/930637: Difference between revisions

From BetaArchive Wiki
m (Text replacement - "<" to "<")
m (Text replacement - ">" to ">")
 
Line 64: Line 64:
This problem may occur when the script tags in the .osd file do not contain data. Specifically, the problem may occur if the '''HREF''' or '''SCRIPTBODY''' child element of the '''SCRIPT''' element does not contain data as shown in the following example.
This problem may occur when the script tags in the .osd file do not contain data. Specifically, the problem may occur if the '''HREF''' or '''SCRIPTBODY''' child element of the '''SCRIPT''' element does not contain data as shown in the following example.
<pre class="codesample">  
<pre class="codesample">  
<SOFTPKG&gt;
<SOFTPKG>
   <DEPENDENCY&gt;
   <DEPENDENCY>
     <SCRIPT&gt;
     <SCRIPT>
         <HREF&gt;</HREF&gt;
         <HREF></HREF>
     </SCRIPT&gt;
     </SCRIPT>
   </DEPENDENCY&gt;
   </DEPENDENCY>
</SOFTPKG&gt;
</SOFTPKG>


<SOFTPKG&gt;
<SOFTPKG>
   <DEPENDENCY&gt;
   <DEPENDENCY>
     <SCRIPT&gt;
     <SCRIPT>
         <SCRIPTBODY&gt;</SCRIPTBODY&gt;
         <SCRIPTBODY></SCRIPTBODY>
     </SCRIPT&gt;
     </SCRIPT>
   </DEPENDENCY&gt;
   </DEPENDENCY>
</SOFTPKG&gt;</pre>
</SOFTPKG></pre>


</div>
</div>
Line 86: Line 86:
<ol>
<ol>
<li>Use a text editor to open the .osd file.</li>
<li>Use a text editor to open the .osd file.</li>
<li>Review the '''<SCRIPT&gt;''' element for the '''<HREF&gt;''' or '''<SCRIPTBODY&gt;''' element.</li>
<li>Review the '''<SCRIPT>''' element for the '''<HREF>''' or '''<SCRIPTBODY>''' element.</li>
<li><p>If a script will be added, type the script in the '''<HREF&gt;''' element or in the '''<SCRIPTBODY&gt;''' element.</p>
<li><p>If a script will be added, type the script in the '''<HREF>''' element or in the '''<SCRIPTBODY>''' element.</p>
<pre class="codesample">   
<pre class="codesample">   
<SOFTPKG&gt;
<SOFTPKG>
   <DEPENDENCY&gt;
   <DEPENDENCY>
     <SCRIPT&gt;
     <SCRIPT>
         <HREF&gt;type script here</HREF&gt;
         <HREF>type script here</HREF>
     </SCRIPT&gt;
     </SCRIPT>
   </DEPENDENCY&gt;
   </DEPENDENCY>
</SOFTPKG&gt;
</SOFTPKG>


<SOFTPKG&gt;
<SOFTPKG>
   <DEPENDENCY&gt;
   <DEPENDENCY>
     <SCRIPT&gt;
     <SCRIPT>
         <SCRIPTBODY&gt;type script here</SCRIPTBODY&gt;
         <SCRIPTBODY>type script here</SCRIPTBODY>
     </SCRIPT&gt;
     </SCRIPT>
   </DEPENDENCY&gt;
   </DEPENDENCY>
</SOFTPKG&gt;</pre></li>
</SOFTPKG></pre></li>
<li><p>If a script will not be added, remove everything between the '''<SCRIPT&gt;''' tag and the '''</SCRIPT&gt;''' tag.</p>
<li><p>If a script will not be added, remove everything between the '''<SCRIPT>''' tag and the '''</SCRIPT>''' tag.</p>
<pre class="codesample"><SOFTPKG&gt;
<pre class="codesample"><SOFTPKG>
   <DEPENDENCY&gt;
   <DEPENDENCY>
   </DEPENDENCY&gt;
   </DEPENDENCY>
</SOFTPKG&gt;</pre></li>
</SOFTPKG></pre></li>
<li>Save the .osd file, and then exit the text editor.</li></ol>
<li>Save the .osd file, and then exit the text editor.</li></ol>



Latest revision as of 10:26, 21 July 2020

Knowledge Base


Error message when you try to start an application in Microsoft SoftGrid: "Error code: xxxxxx-xxxxxx44-00000020"

Article ID: 930637

Article Last Modified on 3/12/2007



APPLIES TO

  • Microsoft SoftGrid for Terminal Services
  • Microsoft SoftGrid for Windows Desktops



SYMPTOMS

When you try to start an application in Microsoft SoftGrid, you receive the following error message:

The SoftGrid Client could not launch the application you requested.
A SCRIPT element in this OSD file is missing an executable. Please report the following error code to your System Administrator.
Error code: xxxxxx-xxxxxx44-00000020

Additionally, the following error message is logged in the SoftGrid Client log file (Sftlog.txt):

The SoftGrid Client could not parse the OSD file '{path}\{filename}.osd'
Reason: Invalid script in file (rc xxxxxx04-00000020)
The app manager could not create an application from '{path}\{filename}.osd' (rc xxxxxx44-00000020).

CAUSE

This problem may occur when the script tags in the .osd file do not contain data. Specifically, the problem may occur if the HREF or SCRIPTBODY child element of the SCRIPT element does not contain data as shown in the following example.

 
<SOFTPKG>
  <DEPENDENCY>
    <SCRIPT>
        <HREF></HREF>
    </SCRIPT>
  </DEPENDENCY>
</SOFTPKG>

<SOFTPKG>
  <DEPENDENCY>
    <SCRIPT>
        <SCRIPTBODY></SCRIPTBODY>
    </SCRIPT>
  </DEPENDENCY>
</SOFTPKG>

To resolve this problem, edit the .OSD file, and then add the appropriate script. Or, remove the script elements completely.

  1. Use a text editor to open the .osd file.
  2. Review the <SCRIPT> element for the <HREF> or <SCRIPTBODY> element.
  3. If a script will be added, type the script in the <HREF> element or in the <SCRIPTBODY> element.

      
    <SOFTPKG>
      <DEPENDENCY>
        <SCRIPT>
            <HREF>type script here</HREF>
        </SCRIPT>
      </DEPENDENCY>
    </SOFTPKG>
    
    <SOFTPKG>
      <DEPENDENCY>
        <SCRIPT>
            <SCRIPTBODY>type script here</SCRIPTBODY>
        </SCRIPT>
      </DEPENDENCY>
    </SOFTPKG>
  4. If a script will not be added, remove everything between the <SCRIPT> tag and the </SCRIPT> tag.

    <SOFTPKG>
      <DEPENDENCY>
      </DEPENDENCY>
    </SOFTPKG>
  5. Save the .osd file, and then exit the text editor.


Keywords: kbexpertiseinter kbtshoot KB930637