服务器server 2008R2 并已部署RemoteApp,发布RD WebAccess. 目前访问remoteapp需要首先提供服务器的帐号密码凭据,然后才可以运行RemoteApp. 我想怎样跳过windows登陆验证,(目前的想法是匿名,但是在注释掉web.config文件里Windows验证并没有效果),
第二种想法:在Launch之前传入已配置授权的Windows凭据 (但是没发现MsRdpClient提供类似接口)
function goRDP(pid, arg) {
var strRdpFileContents = arg;
MsRdpClientShell.PublicMode = true;
MsRdpClientShell.RdpFileContents = unescape(strRdpFileContents);
try {
MsRdpClientShell.Launch();
}
catch (e) {
throw e;
}
}
看图片:
这个 http://stackoverflow.com/questions/1066102/how-to-use-terminal-services-gateway-with-the-imsrdpclient6-activex-control 使用IMsRdpClientTransportSettings2试试