调用 caspol.exe

发布于 2024-07-29 17:56:45 字数 455 浏览 4 评论 0原文

我正在部署一个作为完全受信任的应用程序运行的 xbap 应用程序。 为了获得每个客户端的权限,我当前正在运行一个仅调用 caspol.exe 的批处理文件。

它基本上就是这样做的:

%windir%\Microsoft.NET\Framework\v2.0.50727\caspol -m -ag 1 -url "http://127.0.0.1/mypath/*" FullTrust -exclusive on

这很好用。 但是,我意识到 caspol.exe 随 .NET SDK 一起提供(与 .NET Framework 控制面板小程序一样),而不是随 .NET 运行时一起提供。 那么,如果我在只有运行时而没有 SDK 的客户端计算机上进行安装,我该怎么做?

这可以通过编程来完成吗? 是否有任何我可以指导人们使用的配置设置?

I'm deploying an xbap application that runs as a full-trusted app.
To get permissions on each client, I'm currently running a batch file that just calls caspol.exe.

It basically just does this:

%windir%\Microsoft.NET\Framework\v2.0.50727\caspol -m -ag 1 -url "http://127.0.0.1/mypath/*" FullTrust -exclusive on

This works fine.
However, I realized that caspol.exe ships with the .NET SDK (as does the .NET Framework Control Panel applet) and not with the .NET runtime.
So, if I'm installing on a client machine that only has the runtime and not the SDK, how do I do it?

Can this be programatically done?
Are there any configuration settings that I can direct people to use?

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

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

发布评论

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

评论(1

梦太阳 2024-08-05 17:56:45

caspol 实用程序实际上包含在 .NET 2.0 的 .NET 可再发行组件包中。 只要 PC 安装了 .NET 2.0,您就可以依赖 caspol。 不需要 SDK。

附带说明一下,从 .NET 2.0 开始,控制面板中的 .NET 配置实用程序仅随 2.0 SDK 提供,并且不随可再发行包一起提供。

-肯

The caspol utility is actually included with the .NET redistributable package for .NET 2.0. As long as the PC has .NET 2.0 installed, you can rely on caspol being there. The SDK is not required.

On a side note, starting with .NET 2.0, the .NET configuration utility in the Control Panel is available exclusively with the 2.0 SDK and does not come with the redistributable package.

-Ken

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