<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: troubleshootin VB script: EG object cannot open file in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577434#M34322</link>
    <description>&lt;P&gt;If you enable Application Logging (Tools-&amp;gt;Options in EG), then you should get some additional logs when running scripts.&amp;nbsp; They will have a CSCRIPT.EXE prefix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something in there could provide a hint about what's going on.&amp;nbsp; SAS Tech Support or R&amp;amp;D might need to help -- these logs are not super user friendly.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2019 16:40:48 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2019-07-29T16:40:48Z</dc:date>
    <item>
      <title>troubleshooting VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577343#M34314</link>
      <description>&lt;P&gt;How does one troubleshoot problems evident by the object not being able to open a file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Option Explicit
Dim Application
Dim Project

' Change if running a different version of EG
Dim egVersion 
egVersion = "SASEGObjectModel.Application.7.1"

If WScript.Arguments.Count = 0 Then
  WScript.Echo "ERROR: Expecting the full path name of a project file"
  WScript.Quit -1
End If

' Create a new SAS Enterprise Guide automation session
On Error Resume Next
Set Application = WScript.CreateObject(egVersion)
' WScript.Echo "Opening project: " &amp;amp; WScript.Arguments.Item(0)
If Err.Number &amp;lt;&amp;gt; 0 Then
  WScript.Echo "ERROR: Need help with 'Set Application = WScript.CreateObject(egVersion)'" 
  WScript.Quit -1
End If

' Open the EGP file with the Application
Set Project = Application.Open(WScript.Arguments.Item(0),"")
If Err.Number &amp;lt;&amp;gt; 0 Then
  WScript.Echo "ERROR: Unable to open " _
    &amp;amp; WScript.Arguments.Item(0) &amp;amp; " as a project file"
  WScript.Quit -1
End If&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;C:\Users\Dreamy\Desktop\ExtractCode&amp;gt;cscript ExtractCode_v7.vbs C:\Users\Dreamy\Desktop\ExtractCode\Qtr_ZZZZ.egp
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.

ERROR: Unable to open C:\Users\Dreamy\Desktop\ExtractCode\Qtr_ZZZZ.egp as a project file&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I missing?:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;0. I'm using SAS Enterprise Guide 7.1 (64-bit), &lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;B4N008 &lt;/SPAN&gt;hotfixed, recently upgraded the install from 32-bit. I just upgraded Windows 10, and this OS is 64-bit . &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. If I use the other 32 bit version of CSCRIPT then the script fails at create object.&amp;nbsp; I'm pretty sure I'm using the correct 64-bit CSCRIPT executable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. When I try to run these two lines of code in VBscript &amp;amp;colon;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Set Application = WScript.CreateObject("SASEGObjectModel.Application.7.1")
WScript.Echo Application.Name &amp;amp; ", Version: " &amp;amp; Application.Version&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Enterprise Guide, Version 7.100.5.0&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. I ran this for the sake of doing everything:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;c:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm /codebase "c:\Program Files\SASHome\SASEnterpriseGuide\7.1\sasegscripting.dll"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="box-sizing: border-box; line-height: 16.8px;"&gt;I received the output:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Microsoft .NET Framework Assembly Registration Utility version 4.0.30319.18408
for Microsoft .NET Framework version 4.0.30319.18408
Copyright (C) Microsoft Corporation.  All rights reserved.

Types registered successfully&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4.&amp;nbsp; The EGP file that I am opening, is not opened by another instance of SAS EG, although I have another copy open in the GUI. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5.&amp;nbsp; Other EGP files that I once was able to open, prior to the upgrade to WinTen and EG 64-bit, do not open either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If its easy&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; -- &lt;/SPAN&gt;give me hints and make me work for the solution.&amp;nbsp; thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 14:07:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577343#M34314</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-08-06T14:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577351#M34315</link>
      <description>&lt;P&gt;Are you able to open the project file from EG?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:04:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577351#M34315</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-07-29T14:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577352#M34316</link>
      <description>&lt;P&gt;Good question.&amp;nbsp; yes.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:05:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577352#M34316</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-07-29T14:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577359#M34317</link>
      <description>&lt;P&gt;Could it be that there's some kind of environment problem? How do you start the vbs script? In batch, from a schedule, or in a simple cmd window?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577359#M34317</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-07-29T14:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577361#M34318</link>
      <description>&lt;P&gt;Or do you have the project open in a desktop EG instance?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:11:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577361#M34318</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-07-29T14:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577362#M34319</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;Could it be that there's some kind of environment problem? How do you start the vbs script? In batch, from a schedule, or in a simple cmd window?&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;CMD window&lt;/P&gt;&lt;DIV class="lia-linear-display-message-view"&gt;&lt;DIV&gt;&lt;DIV class="lia-message-view message-uid-577361"&gt;&lt;DIV&gt;&lt;DIV class="lia-js-resize-images lia-component-forums-widget-board-message-view"&gt;&lt;DIV&gt;&lt;DIV class="lia-message-board lia-panel-message lia-js-data-messageUid-577361"&gt;&lt;DIV class="lia-panel-message-content"&gt;&lt;DIV class="lia-decoration-border"&gt;&lt;DIV class="lia-decoration-border-content"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class="lia-quilt lia-quilt-forum-message lia-quilt-layout-forum-message"&gt;&lt;DIV class="lia-quilt-row lia-quilt-row-forum-message-main"&gt;&lt;DIV class="lia-quilt-column lia-quilt-column-20 lia-quilt-column-right lia-quilt-column-main-right"&gt;&lt;DIV class="lia-quilt-column-alley lia-quilt-column-alley-right"&gt;&lt;BLOCKQUOTE&gt;&lt;P class="lia-message-dates lia-message-post-date lia-component-post-date-last-edited"&gt;Or do you have the project open in a desktop EG instance?&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P class="lia-message-dates lia-message-post-date lia-component-post-date-last-edited"&gt;The file I'm trying to open is the version that I saved, then copied, renamed and moved to another directory.&amp;nbsp; I have the original version open. &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:19:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577362#M34319</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-07-29T14:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577365#M34320</link>
      <description>&lt;P&gt;I should add I have the B4N008 hot fix.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;Other EGP files that I use to be able to open via the script do not open either...&amp;nbsp; I should have added that too, sorry.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:29:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577365#M34320</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-07-29T14:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577375#M34321</link>
      <description>&lt;P&gt;Then I have to admit I'm out of options. Maybe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;or &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15089"&gt;@CaseySmith&lt;/a&gt;&amp;nbsp;can help.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:46:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577375#M34321</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-07-29T14:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577434#M34322</link>
      <description>&lt;P&gt;If you enable Application Logging (Tools-&amp;gt;Options in EG), then you should get some additional logs when running scripts.&amp;nbsp; They will have a CSCRIPT.EXE prefix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something in there could provide a hint about what's going on.&amp;nbsp; SAS Tech Support or R&amp;amp;D might need to help -- these logs are not super user friendly.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 16:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/577434#M34322</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2019-07-29T16:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579268#M34386</link>
      <description>&lt;P&gt;A long shot, but does it fail if you try this command instead (without fully-qualified path to .egp file, since it appears to be in the same folder as your .vbs)?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;C:\Users\Dreamy\Desktop\ExtractCode&amp;gt;cscript ExtractCode_v7.vbs Qtr_ZZZZ.egp&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if you put the files somewhere other than your Desktop?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reason I ask is that I can reproduce the same error when the .egp file cannot be located.&amp;nbsp; Your script works fine for me (using 32-bit 7.15 HF8; I didn't try 64-bit, but I'd expect it to work for me too).&amp;nbsp; (The Qtr_ZZZZ.egp file I created simply contains a single program with the code "proc print; data=sashelp.class; run;".)&amp;nbsp; However, I initially saw the same error when I ran this command (note, I'm using 32-bit EG, thus the 32-bit cscript.exe):&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;c:\Windows\SysWOW64\cscript.exe "C:\Users\cassmi\OneDrive - SAS\Desktop\ExtractCode_v7.vbs" "C:\Users\cassmi\Desktop\ExtractCode\Qtr_ZZZZ.egp"&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The reason I got the error is because "C:\Users\cassmi\Desktop\ExtractCode\Qtr_ZZZZ.egp" doesn't physically exist on my machine.&amp;nbsp; I can paste "C:\Users\cassmi\Desktop\ExtractCode" into Windows Explorer and it routes to my Desktop fine, but then if I look at the path in the address bar, I see it mapped to "C:\Users\cassmi\OneDrive - SAS\Desktop\ExtractCode".&amp;nbsp; Windows Explorer knows to map "C:\Users\cassmi\Desktop" to my physically mapped Desktop location, but the command window doesn't (since "C:\Users\cassmi\Desktop" is also a physical location, but not the one my Desktop is mapped to).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm guessing you are running into a different issue, since your command prompt shows "C:\Users\Dreamy\Desktop\ExtractCode" physically exists (so your Desktop is probably not mapped), but worth confirming that the path to the .egp file you are passing in physically exists in the context of the command window (ex. dir "C:\Users\Dreamy\Desktop\ExtractCode\Qtr_ZZZZ.egp").&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you confirm it exists, then I'd try a trivial project, such as the one I described earlier (containing a single, simple program).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If still no luck, I second Chris' recommendation of turning on EG logging and then inspecting the resultant cscript_log.*.txt logs in the EG log location (ex. %appdata%\SAS\EnterpriseGuide\7.1\Logs) and search it for errors or exceptions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 04:10:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579268#M34386</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2019-08-06T04:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579350#M34390</link>
      <description>&lt;P&gt;So as far as I know this directory is not synced to a remote device. &amp;nbsp;This directory is the location where I've used EG via VBS script countless times, successfully, using the 32-bit EG and Windows 7.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had recently installed/upgraded to 64-bit EG, to fix a problem that I had with the 32-bit version not being able to import to Excel using the 'Send To' button.&amp;nbsp; (Which is super useful and worth uninstalling 32 bit EG for.) &amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;So much has changed on my system I've lost track of the last time I used EG with VBS and if I ever did using the new Windows 10 environment.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Anyway uninstalled 64-bit EG reinstalled 32-bit.&amp;nbsp; No dice.&amp;nbsp; Same thing (using the 32-bit cscript, too). W&lt;/SPAN&gt;e're about to submit this to Tech Support.&amp;nbsp; &lt;SPAN style="background-color: transparent; color: #333333; cursor: text; display: inline; float: none; font-family: &amp;amp;quot; helevticaneue-light&amp;amp;quot;,&amp;amp;quot;helvetica neue&amp;amp;quot;,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 16.8px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I've reverted to 64-bit EG to create the log files for the request.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15089"&gt;@CaseySmith&lt;/a&gt; ,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; ,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 13:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579350#M34390</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-08-06T13:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579376#M34391</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15089"&gt;@CaseySmith&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How much does Java interact with this process?&amp;nbsp; Would it be an issue if Java wasn't up-to-date?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 14:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579376#M34391</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-08-06T14:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: troubleshootin VB script: EG object cannot open file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579387#M34392</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15329"&gt;@PhilC&lt;/a&gt;&amp;nbsp;- no, I don't expect that Java would have any impact on this.&amp;nbsp; EG does not rely on Java in the process.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2019 14:16:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/m-p/579387#M34392</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2019-08-06T14:16:15Z</dc:date>
    </item>
  </channel>
</rss>

