Error: Failed to set Event Logging

简介:

Symptoms:

 

 When opening published applications from Citrix XenApp or Web Interface, you receive the following error message:

“wfcrun32 ERROR
Failed to set Event Logging.”

Clicking OK allows the application to open.

 

 

Cause

This occurs if the user’s profile was moved after the XenApp plugin was installed. The log file path in the Users Appsrv.ini is incorrect. Uninstalling and reinstalling does not correct the issue.

Resolution

1. Open the appsrv.ini file located in the user’s Citrix ICA client folder, the default locations are:

In Windows Vista - C:\Users\UserName\AppData\Roaming\ICAClient\
In Windows XP – C:\Documents and Settings\UserName\Application Data\ICAClient\

2. Find the line beginning with”LogFileWin32”, it should be near the top.

The default Value is:

In Windows Vista - C:\Users\UserName\AppData\Roaming\ICAClient\wfcwin32.log

In Windows XP – C:\Documents and Settings\UserName\Application Data\ ICAClient\wfcwin32.log

3. Update the entry to point to the correct location.



本文转自 zhxhua 51CTO博客,原文链接:http://blog.51cto.com/virtualtop/431969 ,如需转载请自行联系原作者

相关文章
|
5月前
|
资源调度 前端开发
编译第三方前端项目时候出现Syntax Error: TypeError: Cannot set properties of undefined (setting ‘parent‘)
编译第三方前端项目时候出现Syntax Error: TypeError: Cannot set properties of undefined (setting ‘parent‘)
411 0
|
2月前
|
XML 缓存 API
【Azure API 管理】使用APIM进行XML内容读取时遇见的诡异错误 Expression evaluation failed. Object reference not set to an instance of an object.
【Azure API 管理】使用APIM进行XML内容读取时遇见的诡异错误 Expression evaluation failed. Object reference not set to an instance of an object.
|
5月前
|
API Android开发 开发者
failed to set system property error code: 0x18
failed to set system property error code: 0x18
227 1
|
5月前
|
druid Java
Error attempting to get column ‘createTime‘ from result set的异常
Error attempting to get column ‘createTime‘ from result set的异常
370 0
|
5月前
|
Python
gyp ERR! stack Error: Can‘t find Python executable “python“, you can set the PYTHON env variable.
gyp ERR! stack Error: Can‘t find Python executable “python“, you can set the PYTHON env variable.
152 1
|
5月前
|
XML Java 数据库连接
mybatis和mybatiplus中Error attempting to get column ‘xx‘ from result set
mybatis和mybatiplus中Error attempting to get column ‘xx‘ from result set
141 0
|
10月前
|
分布式计算 Hadoop 大数据
|
1天前
|
存储 JavaScript 前端开发
Set、Map、WeakSet 和 WeakMap 的区别
在 JavaScript 中,Set 和 Map 用于存储唯一值和键值对,支持多种操作方法,如添加、删除和检查元素。WeakSet 和 WeakMap 则存储弱引用的对象,有助于防止内存泄漏,适合特定场景使用。
|
3天前
|
存储 缓存 Java
【用Java学习数据结构系列】HashMap与TreeMap的区别,以及Map与Set的关系
【用Java学习数据结构系列】HashMap与TreeMap的区别,以及Map与Set的关系
22 1
|
29天前
|
存储 Java API
【数据结构】map&set详解
本文详细介绍了Java集合框架中的Set系列和Map系列集合。Set系列包括HashSet(哈希表实现,无序且元素唯一)、LinkedHashSet(保持插入顺序的HashSet)、TreeSet(红黑树实现,自动排序)。Map系列为双列集合,键值一一对应,键不可重复,值可重复。文章还介绍了HashMap、LinkedHashMap、TreeMap的具体实现与应用场景,并提供了面试题示例,如随机链表复制、宝石与石头、前K个高频单词等问题的解决方案。
26 6
【数据结构】map&set详解