避免“SAS 入门”打开第二个 SAS 会话时的窗口

发布于 2024-08-06 07:09:21 字数 196 浏览 3 评论 0原文

打开第二个 SAS 会话时(即使用不包含正常设置的“工作”配置文件时),如何防止显示弹出窗口(“sas 入门”)???

运行

proc options internal; run;

显示 TUTORIALDLG 选项,但我不知道在“调用”处设置此选项的语法 - (大概在 .CFG 文件中..)

How can the popup window ("getting started with sas") be prevented from displaying when opening a second SAS session (ie when a 'work' profile is used that does not contain your normal settings) ???

running

proc options internal; run;

reveals the TUTORIALDLG option, but I do not know the syntax to set this option at 'invocation' - (presumbably in the .CFG file..)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好倦 2024-08-13 07:09:21

只需将该行添加

-NOTUTORIALDLG

到您的配置文件或者,如果您使用命令行启动 sas,您可以将该行添加到启动命令中。如果您需要查找会话正在使用的配置文件的位置,请提交以下命令:

proc options option=config;run;

Just add the line

-NOTUTORIALDLG

to your config file or if you use the command line to start sas you can add the line to the startup command. If you need to find the location of the config file your session is using, submit this command:

proc options option=config;run;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文