调用 caspol.exe
我正在部署一个作为完全受信任的应用程序运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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