<?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: EG8: what is the new SASEGObjectModel string? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750413#M38982</link>
    <description>There is a need to match bit-ness with your SAS installation and the scripting executable in your OS.  I'm going to assume your using Window 10.  There are resources that explain this online and also here on this forum.  Search for ”cscript" when look.  Give me some time I'll respond with a link.</description>
    <pubDate>Fri, 25 Jun 2021 11:32:49 GMT</pubDate>
    <dc:creator>PhilC</dc:creator>
    <dc:date>2021-06-25T11:32:49Z</dc:date>
    <item>
      <title>EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582094#M34504</link>
      <description>&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; 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; line-height: 21.33px; 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;W&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; 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; line-height: 21.33px; 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;hat is the "SASEGObjectModel.Application.x.y" string for the new EG version 8?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 12:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582094#M34504</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-08-19T12:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582117#M34506</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;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It should be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Set app = CreateObject("SASEGObjectModel.Application.8.1")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not working for you?&amp;nbsp; Make sure you're using the correct bitness for CSCRIPT/VBSCRIPT to match EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;' force declaration of variables in VB Script
Option Explicit
Dim Application
' Create a new SAS Enterprise Guide automation session
' Change if running a different version of EG
Dim egVersion 
egVersion = "SASEGObjectModel.Application.8.1"

Set Application = WScript.CreateObject(egVersion)
WScript.Echo Application.Name &amp;amp; ", Version: " &amp;amp; Application.Version

Application.Quit&lt;/PRE&gt;
&lt;P&gt;Saved as NewApp.vbs, then run (for 32-bit EG 8.1):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;C:\&amp;gt;%windir%\syswow64\cscript c:\temp\newapp.vbs
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.

Enterprise Guide, Version: 8.1.0.0&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 14:47:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582117#M34506</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2019-08-19T14:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582253#M34507</link>
      <description>&lt;P&gt;Well I was having problems getting the API to work on my system with EG7, if you &lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/troubleshooting-VB-script-EG-object-cannot-open-file/td-p/577343" target="_self"&gt;remember&lt;/A&gt;.&amp;nbsp; I gave up and installed EG8; I'm sure I have the same issue that I did with EG7 (AT LEAST).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, so much for installing the new version for a fix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have that outstanding SAS Tech Ticket.&amp;nbsp; I'll work through them.&amp;nbsp; This is was what I needed to know -- thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 20:35:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/582253#M34507</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2019-08-19T20:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750376#M38981</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to use your coding to run my VBS &lt;SPAN&gt;(for 32-bit EG 8.2)&amp;nbsp;&lt;/SPAN&gt;, and it shows: Could not create object named "&lt;SPAN&gt;SASEGObjectModel.Application.8.1"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program still did not work when i changed the version from 8.1 to 8.2.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 04:23:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750376#M38981</guid>
      <dc:creator>Momo0404</dc:creator>
      <dc:date>2021-06-25T04:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750413#M38982</link>
      <description>There is a need to match bit-ness with your SAS installation and the scripting executable in your OS.  I'm going to assume your using Window 10.  There are resources that explain this online and also here on this forum.  Search for ”cscript" when look.  Give me some time I'll respond with a link.</description>
      <pubDate>Fri, 25 Jun 2021 11:32:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750413#M38982</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2021-06-25T11:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750922#M39013</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15329"&gt;@PhilC&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works successfully! Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 09:41:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/750922#M39013</guid>
      <dc:creator>Momo0404</dc:creator>
      <dc:date>2021-06-29T09:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: EG8: what is the new SASEGObjectModel string?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/751051#M39017</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You're welcome.&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;STRONG&gt;And here's that link I promised, LOL, I forgot.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/EG-7-11-64-bit-scheduling-on-Windows-10-64-bit/m-p/256540" target="_blank"&gt;EG 7.11(64 bit) scheduling on Windows 10(64 bit) - SAS Support Communities&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 19:57:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/EG8-what-is-the-new-SASEGObjectModel-string/m-p/751051#M39017</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2021-06-29T19:57:37Z</dc:date>
    </item>
  </channel>
</rss>

