Categories
Citrix Microsoft Registry Windows 7 Windows Server 2008

Citrix – “Error number 2320 Citrix Receiver Configuration Manager: No value could be found for (ClientHostedApps) that satisfies all lockdown requirements. The lockdown requirements in force may be conflicting.”

Citrix Receiver

Citrix Receiver

Citrix Receiver client produces the following error when trying to launch a published application:

Error number 2320
Citrix Receiver Configuration Manager: No value could be found for (ClientHostedApps) that satisfies all lockdown requirements. The lockdown requirements in force may be conflicting.

Solution:

The most salient part of the error message is in between the parenthesis: ClientHostedApps is a registry value.

Open the registry editor
Click on the start button and then on run type regedit and click OK.

Navigate in the registry
on 32-bit systems:
HKEY_LOCAL_MACHINE\\SOFTWARE\\Citrix\\ICA Client\\Engine\\Lockdown Profiles\\All Regions\\Lockdown\\Virtual Channels\\Control

on 64-bit systems:
HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Citrix\\ICA Client\\Engine\\Lockdown Profiles\\All Regions\\Lockdown\\Virtual Channels\\Control

Right-click ClientHostedApps and select Delete.

Now you can launch your published application.

My configuration: Windows 7 Home Premium Service Pack 1 and Receiver 3.0 For Web Access.

Update: (thanks to comments by Denis, Satish and JapyDooge)
on Windows 7 64-bit or w2k8 64-bit or Windows 7 Enterprise is located in

HKEY_CURRENT_USER

Did my solution solve your problem? Leave a reply.

Categories
Microsoft Replication SQL Server

SQL Server – “SQL Server replication requires the actual server name to make a connection to the server. Connections through a server alias, IP address, or any other alternate name are not supported. Specify the actual server name, ‘{old_name}’. (Replication.Utilities)”

If network name or server name is changed and you want to setup the server for replication you’ll receive the following error message:

SQL Server replication requires the actual server name to make a connection to the server. Connections through a server alias, IP address, or any other alternate name are not supported. Specify the actual server name, ‘{old_name}’. (Replication.Utilities)

To get the Current Server Name (Instance Name) run these two queries in Microsoft SQL Server Management Studio that return old_name

[sourcecode language=”sql”]
sp_helpserver
select @@servername
[/sourcecode]

Solution:

Run this:

[sourcecode language=”sql”]
sp_dropserver ‘old_name’
go
sp_addserver ‘new_name’,’local’
go
[/sourcecode]

then start Command Prompt Window (Start -> Run -> cmd) and execute the following command:

net stop mssqlserver
net start mssqlserver

to restart SQL Server Service.

Did my solution solve your problem?