如何禁用在使用receiver时,打开多个断开连接回话

How to Disable Workspace Control Reconnect

A question on how to disable workspace control reconnect forCitrix Receivers has come up many times.

Workspacecontrol for Receiver for Web can be managed by editing web.config for theReceiver for Web site. Please see Citrix eDocs for details.

For Receiver forWindows, workspace control can be managed on client devices by modifying theregistry. Please see thisKnowledgebase Article for how toimplement it. This can also be done for domain-joined client devices usingGroup Policy.

StoreFront 2.6introduces a configuration to disable workspace control reconnect in the StoreService for all receivers . This can be managed by using PowerShell or byediting web.config.

Using PowerShell

Make sure thatyou close the Admin Console. Run the following code snippet to import theStoreFront PowerShell modules:

$dsInstallProp = Get-ItemProperty `
 -Path HKLM:\SOFTWARE\Citrix\DeliveryServicesManagement -Name InstallDir
$dsInstallDir = $dsInstallProp.InstallDir
& $dsInstallDir\..\Scripts\ImportModules.ps1

Workspacecontrol reconnect can then be turned on/off by the PowerShell commandSet-DSAllowSessionReconnect. Its syntax is:

Set-DSAllowSessionReconnect [[-SiteId] <Int64>] [[-VirtualPath] <String>] `
    [[-IsAllowed] <Boolean>]

For example, ifyou would like turn off workspace control reconnect for a store in/Citrix/Store, the following command will configure the store appropriately:

Set-DSAllowSessionReconnect -SiteId 1 -VirtualPath /Citrix/Store `
    -IsAllowed $false

Editing web.config

Open web.configunder the Store Service, e.g. /Citrix/Store in a text editor. Locate the linelooks like:

<resourcesService id="f01f7dc4-7f28-4bc1-b8fb-7c0db9570d20"
      storeLockedDown="false"
      anonymousStore="false" allowSessionReconnect="true" />

Change the valueof allowSessionReconnect to false to disable workspace control reconnect ortrue to enable it.

<resourcesService id="f01f7dc4-7f28-4bc1-b8fb-7c0db9570d20"

storeLockedDown="false"

anonymousStore="false"allowSessionReconnect="true" />

将 allowsessionReconnect=true 更改为false

时间: 2024-10-24 22:06:44

如何禁用在使用receiver时,打开多个断开连接回话的相关文章

关于 百度 Ueditor (在chrome浏览器) 上传图片时 打开文件夹的延迟问题

在使用 ueditor 开发时, 作为一个web文本编辑器使用时. 当点击上传图片时, 文件夹要延迟好久才能打开. 解决: 针对多图片上传, 将/ueditor/dialogs/image/image.js 文件下的以下代码 accept: { title: 'Images', extensions: acceptExtensions, mimeTypes: 'image/*' }, 改为 accept: { title: 'Images', extensions: acceptExtensio

modalDialog的使用,图片切换,点击图片时打开一个窗体,并显示信息

//主窗体 //与open的区别:1.参数二是传递的参数 2.属性设置格式:属性=属性值; 3.dialogHeight与dialogWidth没有单位,即需要自己加上px //window.showModalDialog //("modalDialog.html",window,"dialogHeight=300px;dialogWidth=300px;scroll=yes;status=yes;dialogTop=100;dialogLeft=100;resizable=

android studio使用CMake和NDK,实现应用自身被卸载时打开某一网址

实现应用自身被卸载时打开某一网址的c代码 MyActivity: public class MyActivity extends Activity { /** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.ma

无法打开SQL Server的连接

   机房收费系统重构版的登陆敲了好几天了,总算把登陆窗体敲完了,代码调试的差不多了,问题就处在数据库了.    SQL Server配置管理里的SQL  Server服务都启动了,但是还是报这个错误:在与 SQL Server建立连接时出现与网络相关的或特定于实例的错误.未找到或无法访问服务器.请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接.(provider: Named Pipes Provider, error: 40 - 无法打开到 SQL Server 的连接

exchange2016恢复断开连接的邮箱、恢复禁用的邮箱

概要断开连接的邮箱是在未与 Active Directory 用户帐户关联的 Exchange 存储中的邮箱对象.断开的邮箱仍保留在 Exchange 数据库中,保留时间在邮箱数据库的已删除邮箱保留设置中指定.默认情况下,断开的邮箱将保留 30 天.在此保留期内,将邮箱连接到新的或现有的 Active Directory 用户帐户可以恢复邮箱.有两种类型的断开连接的邮箱: 软删除的邮箱 将邮箱从 Microsoft Exchange Server 2010 Service Pack 1 (SP1

Sql Server 2005的1433端口打开和进行远程连接

参考地址:http://topic.csdn.net/u/20090828/16/e693935a-99b7-4090-a6bc-0123c91183eb.html 1.如何打开sql server 2005 的1433端口配置工具->Sql Server Configuration Manager->MSSQLSERVER的协议看看TCP/IP协议是否启动,如果启动,右键菜单点"属性" ,在分页菜单中选"IP地址",把"IP1"和&

(微信API接口开发) 使用HttpWebRequest进行请求时发生错误:基础连接已关闭,发送时发生错误处理

最近调试原来的微信模拟登陆时发生了"基础连接已关闭,发送时发生错误"的错误提示,原来都是好好的,只是很久没用了. 出错代码如下: ? 1 2 3 4 5 6 7 HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("https://mp.weixin.qq.com/cgi-bin/loginpage?t=wxm2-login&lang=zh_CN");///cgi-bin/loginpage?

关于:Centoslinux 远程连接服务器时客户端一直显示:连接已复位,重新连接到(ip)

对于每个linux初学者来说,遇到问题并不可怕,可怕的是你解决不了问题. 在这里分享一个我遇到的一个问题: 当我在用远程连接的时候,起初还好好的,结果在执行了一个yum安装命令之后, 客户端连接就断了,重新连接的时候就出现了如图这种情况. 首先我想到的是会不会是网络连接的问题,但是我客户端ping服务器,服务器ping客户端都是通的,不是这里的问题: 然后我就到虚拟机的服务器端里面去看看,我觉得会不会是防火墙没关,但是关了之后并没有什么作用: 于是乎重新检查了一下客户端的配置文件:vi /etc

Windows7 连接Windows Server服务器时提示:计算机无法连接到远程计算机上的另一个控制台会话。

问题: 使用windows 7远程连接windows 2008 系统时,提示" 计算机无法连接到远程计算机上的另一个控制台会话,原因是您正在运行一个控制台会话" 解决方法: 1.将网上邻居里面的东西删除,如果还不行的话,转移到第2步: 2.在"开始"---"运行"里输入 mstsc /migrate (该命令作用是将使用客户端连接管理器创建的旧连接文件前移到新的.rdp 连接文件) 3.查看你要远程桌面连接的服务器地址是不是和你的本地电脑上vmw