使用 AxMsRdpClient 通过 RDP 连接到云实例时,如何启用 SecuredSettingsEnabled?

发布于 2024-09-17 17:17:55 字数 255 浏览 5 评论 0原文

我在网上到处搜索,但就是无法理解这个问题。

基本上我想连接到位于云中的 Windows Server 2008 实例并运行批处理文件(位于实例上)。

我正在使用 AxMSTSCLib 和 MSTSCLib 通过 RDP 连接到它,但无法运行批处理。问题是 SecuredSettingsEnabled 未启用,因此我被限制执行此类操作。

如何正确连接,以便将 SecuredSettingsEnabled 设置为 True 并且可以运行我的批处理?

I've searched the web high and low and just cannot wrap my head around this.

Basically I want to connect to a windows server 2008 instance, located in the cloud and run a batch file (which is located on the instance).

I'm using the AxMSTSCLib and MSTSCLib to connect to it through RDP, but cannot get the batch running. The problem is SecuredSettingsEnabled isn't enabled so I am restricted doing this kind of operation.

How do I connect properly, so that SecuredSettingsEnabled is set to True and I can run my batch?

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

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

发布评论

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

评论(1

谁的新欢旧爱 2024-09-24 17:17:55

您可以将AxMsTsc客户端的AdvancedSettings属性投射到您想要的设置界面。然后您可以访问所有可用的设置。通过此操作,为 WPF 中的选项卡式 RDP 会话工具启用 SmartSizing。

this.Client = new AxMsTscAxNotSafeForScripting();
IMsRdpClientAdvancedSettings7 settings = 
    (IMsRdpClientAdvancedSettings7)this.Client.AdvancedSettings;
settings.SmartSizing = true;

答案是回答一个完全不同的问题。我读错了原来的问题。有关详细信息和我在文档中找到的提示,请参阅我的最后评论。如有任何不便,敬请谅解!

You can cast the AdvancedSettings property of the AxMsTsc client to your desired settings interface. Then you can access all settings, which are available. Got through this to enable SmartSizing for my tabbed RDP Session Tool in WPF.

this.Client = new AxMsTscAxNotSafeForScripting();
IMsRdpClientAdvancedSettings7 settings = 
    (IMsRdpClientAdvancedSettings7)this.Client.AdvancedSettings;
settings.SmartSizing = true;

The answer is answering an entirely different question. I misread the original question. See my last comment for details and a hint I found in the documentation. Sorry for any inconvenience!

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