<?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: Automation: running EG projects in headless mode via SSH in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924946#M44645</link>
    <description>&lt;P&gt;Well we already use Apache Airflow to orchestrate our other Data Engineering tasks. Running sas programs directly is a path we also consider, but the issue is how to keep the execution order in sync with the .egp files as they are being continuously developed. Running the projects via EG would achieve that for free.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If all we have to do is Share -&amp;gt; Export all code in project, we could probably live with this being a necessary step for deployment. Can it be guaranteed that it produces exactly the same results as running the code from within EG?&lt;/P&gt;</description>
    <pubDate>Fri, 19 Apr 2024 05:58:14 GMT</pubDate>
    <dc:creator>js5</dc:creator>
    <dc:date>2024-04-19T05:58:14Z</dc:date>
    <item>
      <title>Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924830#M44638</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to automate our already developed SAS EG projects by starting them remotely via VBS. I have the following script developed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' ------------------------------------------------
' ExtractCodeAndLog.vbs
' Uses SAS Enterprise Guide automation to read an EGP file
' and export all SAS programs and logs to subfolders
' There is a new subfolder created for each process flow
' within the project
'
' This script uses the Code.Text method, which will NOT include
' other "wrapper" code around each program that 
' SAS Enterprise Guide might have inserted
'
' USAGE:
'   cscript.exe ExtractCodeAndLog.vbs &amp;lt;path-to-EGP-file&amp;gt;
' EXAMPLE:
'   cscript.exe ExtractCodeAndLog.vbs c:\projects\DonorsChoose.egp
'
' NOTE: use proper version of CSCRIPT.exe for your SAS Enterprise Guide
' version.  For 32-bit EG on 64-bit Windows, use 
'      c:\Windows\SysWOW64\cscript.exe 
' ------------------------------------------------
' force declaration of variables in VB Script
Option Explicit
Dim Application
Dim Project

' Change if running a different version of EG
Dim egVersion 
egVersion = "SASEGObjectModel.Application.8.1"

' Simple error check - looking for a project file 
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)

' 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

WScript.Echo "  " &amp;amp; Project.Name &amp;amp; ", Project Flow"  
WScript.Echo "  " &amp;amp; Project.Path &amp;amp; ", Project Flow"  
Project.ProjectLog.Clear()
Project.ProjectLog.Enabled = True
Project.Run
Project.ProjectLog.SaveAs "\\foo\projectLog.txt"

Dim item

' Navigate the process flows in the Project object

'For Each item In Project.ProjectItems
  ' ProcessFlow is ContainerType of 0
'  If flow.ContainerType = 0 and flow.name = "autoexec" Then
'    WScript.Echo "  " &amp;amp; item.Name &amp;amp; item.Type &amp;amp; ", Item"  
'    flow.Run
'  End If
'Next

'Dim flow

' Navigate the process flows in the Project object

'For Each flow In Project.ContainerCollection
  ' ProcessFlow is ContainerType of 0
'  If flow.ContainerType = 0 and flow.name = "autoexec" Then
'    WScript.Echo "  " &amp;amp; flow.Name &amp;amp; ", Process Flow"  
'    flow.Run
'  End If
'Next

'For Each flow In Project.ContainerCollection
  ' ProcessFlow is ContainerType of 0
'  If flow.ContainerType = 0 and flow.name &amp;lt;&amp;gt; "autoexec" Then
'    WScript.Echo "  " &amp;amp; flow.Name &amp;amp; ", Process Flow"  
'    flow.Run
'  End If
'Next


' Close the project
Project.Close
' Quit/close the Application object
Application.Quit&lt;/PRE&gt;&lt;P&gt;It does what I want it to do when started from a Citrix session on a machine SAS EG is installed, but if I ssh into the machine and try to run it, I get the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Could not create object named&amp;nbsp;"SASEGObjectModel.Application.8.1"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Is it because ssh is running in headless mode? Would switching to powershell help in this regard?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 14:11:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924830#M44638</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-04-18T14:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924867#M44640</link>
      <description>&lt;P&gt;Might want to explain what you mean by "headless mode" in this context.&lt;/P&gt;
&lt;P&gt;I did quick search as I am not familiar with the term and the first XXX results all referred to operating drones. So I though I would ask.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 16:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924867#M44640</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-04-18T16:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924896#M44642</link>
      <description>&lt;P&gt;Why so complicated? It is much easier to run&amp;nbsp;&lt;EM&gt;programs&lt;/EM&gt; (.sas files) from the commandline.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 18:55:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924896#M44642</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-04-18T18:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924912#M44643</link>
      <description>&lt;P&gt;While what you are attempting is absolutely doable, I'm with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;on this one, that exporting your EG project to SAS programs and scheduling them in SAS Management Console using the Scheduling Server is far easier and requires no additional scripting at all. Another benefit is that server-based scheduling is more reliable than client-based scheduling.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 20:12:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924912#M44643</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-04-18T20:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924944#M44644</link>
      <description>&lt;P&gt;Headless means command-line only in this context, as I am logging in to the VM running SAS EG via SSH as opposed to RDP/Citrix. My suspicion is that this might be the reason for the VB Script not working, as VBS cannot create a MS Excel object via SSH either but both work when executed locally on the VM.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 05:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924944#M44644</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-04-19T05:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924946#M44645</link>
      <description>&lt;P&gt;Well we already use Apache Airflow to orchestrate our other Data Engineering tasks. Running sas programs directly is a path we also consider, but the issue is how to keep the execution order in sync with the .egp files as they are being continuously developed. Running the projects via EG would achieve that for free.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If all we have to do is Share -&amp;gt; Export all code in project, we could probably live with this being a necessary step for deployment. Can it be guaranteed that it produces exactly the same results as running the code from within EG?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 05:58:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924946#M44645</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-04-19T05:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924992#M44646</link>
      <description>&lt;P&gt;To be verified but I'm pretty sure if you export all code from an EG project then the generated .sas file will contain the code in the sequence how EG would execute it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As an opinion:&lt;/P&gt;
&lt;P&gt;EG scheduling is client side and certainly can help end-users to automate their "personal" tasks but I don't consider this "production level scheduling" and I wouldn't try and use EG projects for this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Viya's SAS Studio flow "merges" many of the advantages and "ease of use" SAS EG provides to end-users with the capabilities of development tools like DI Studio and allows for fully production worthy version control and scheduling.&lt;/P&gt;
&lt;P&gt;It might be worth for you to plan for the future, investigate how things can work under Viya and then go for an approach under SAS9.4 that is "future proof" and will allow for as painless a migration as possible.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 12:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/924992#M44646</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-04-19T12:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925114#M44656</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223838"&gt;@js5&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;"It does what I want it to do when started from a Citrix session on a machine SAS EG is installed, but if I ssh into the machine and try to run it, I get the error:"&lt;BR /&gt;Is the same user account used in both instances?&lt;BR /&gt;Please make sure that the PATH variable has the same value in both cases.&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2024 02:13:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925114#M44656</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-04-21T02:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925716#M44693</link>
      <description>&lt;P&gt;It is the same user. We tried powershell in the meantime and got pretty much the same error. It appears that the issue indeed is that graphical application like SAS EG cannot be started from a command-line-only SSH session&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 09:18:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925716#M44693</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-04-25T09:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925901#M44716</link>
      <description>&lt;P&gt;If you haven't checked this out it may be well worth doing: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Doing-More-with-SAS-Enterprise-Guide-Automation/ta-p/417832" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Doing-More-with-SAS-Enterprise-Guide-Automation/ta-p/417832&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd still suggest pursuing server-side automation with programs exported from EG is a more robust solution. Apache Air Flow could be used in this scenario since it's already one of your tools of choice.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 21:40:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/925901#M44716</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-04-25T21:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945767#M45293</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223838"&gt;@js5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Do you have progresses on this? I have the same problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 10:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945767#M45293</guid>
      <dc:creator>Frank09</dc:creator>
      <dc:date>2024-10-01T10:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945768#M45294</link>
      <description>&lt;P&gt;Still true what has been said multiple times: create a .sas program file from the project, and use server-side scheduling. MUCH less hassle.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 10:57:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945768#M45294</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-10-01T10:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945895#M45303</link>
      <description>&lt;P&gt;It is probably true. While the effort keeping the exported code with the .egp is non-zero, we gave up trying to make EG run remotely. The issue is that there is no graphical session available in SSH. psexec is being mentioned as a possible solution, but it seems to require admin access.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 07:18:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945895#M45303</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-10-02T07:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945899#M45304</link>
      <description>&lt;P&gt;Thanks for your comments! I agree with you that it's ok for some .sas programs to be scheduled by SAS server. However, for many legecy EG project files, people don't want to change something to export them as .sas files. They prefer to use EG VBscript to call them directly.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 07:35:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945899#M45304</guid>
      <dc:creator>Frank09</dc:creator>
      <dc:date>2024-10-02T07:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945900#M45305</link>
      <description>&lt;P&gt;Does the VBscript files has to be executed using Admin privilege?&amp;nbsp; If that's true, SSH connection is not possible using non-admin account to login on Windows. I have not seen SAS company any official comment on this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 07:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945900#M45305</guid>
      <dc:creator>Frank09</dc:creator>
      <dc:date>2024-10-02T07:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945903#M45306</link>
      <description>&lt;P&gt;psexec needs to be executed with admin privilege.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 07:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945903#M45306</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-10-02T07:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945905#M45307</link>
      <description>&lt;P&gt;If use public key authed login on, through SSH, VBscript can be executed directly which calls EG automation dll. Why it is necessary to use psexec? The problem is: non-admin account can't be used to run VBscript which calls EG automation dll. I think the reason maybe as you said, EG requires the admin privilege.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 08:06:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945905#M45307</guid>
      <dc:creator>Frank09</dc:creator>
      <dc:date>2024-10-02T08:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945906#M45308</link>
      <description>It's been a while since I tried this so I do not remember exactly. The problem is not the privileges EG needs. The problem is that if you just log in via SSH, there is no GUI session active and Windows programs, such as EG, require it. If you google around, you will find that people are facing the same issues trying to run MS Excel for example.&lt;BR /&gt;There are two solutions I found:&lt;BR /&gt;- generating a scheduled task and running it&lt;BR /&gt;- running the script via psexec&lt;BR /&gt;Both of these approaches require elevated privileges as far as I recall.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Oct 2024 08:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945906#M45308</guid>
      <dc:creator>js5</dc:creator>
      <dc:date>2024-10-02T08:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945908#M45309</link>
      <description>&lt;P&gt;Thanks! It seems there is no hope to run VBscript through SSH especially when things like Excel involved.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 08:28:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/945908#M45309</guid>
      <dc:creator>Frank09</dc:creator>
      <dc:date>2024-10-02T08:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Automation: running EG projects in headless mode via SSH</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/946027#M45316</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223838"&gt;@js5&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;When one logs in to another machine using SSH it is as good as logging into that machine.&lt;BR /&gt;With your error being&amp;nbsp; &lt;STRONG&gt;'Could not create object named&amp;nbsp;"SASEGObjectModel.Application.8.1"&lt;/STRONG&gt; '&amp;nbsp; there are two things that need to be checked&lt;/P&gt;
&lt;P&gt;1.SAS EG 8.1 is installed on that machine.&lt;/P&gt;
&lt;P&gt;2.Make sure that SAS EG executible and the cscript file locations are in your path.&lt;BR /&gt;&amp;nbsp;This can be verified using echo %PATH% command in the command shell.&lt;/P&gt;
&lt;P&gt;If not then add the paths to the environment variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 21:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Automation-running-EG-projects-in-headless-mode-via-SSH/m-p/946027#M45316</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-10-02T21:53:53Z</dc:date>
    </item>
  </channel>
</rss>

