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 ,如需转载请自行联系原作者

相关文章
|
2月前
|
并行计算 Python
Python错误笔记(一):CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up env
这篇文章讨论了CUDA初始化时出现的未知错误及其解决方案,包括重启系统和安装nvidia-modprobe。
182 0
|
7月前
|
资源调度 前端开发
编译第三方前端项目时候出现Syntax Error: TypeError: Cannot set properties of undefined (setting ‘parent‘)
编译第三方前端项目时候出现Syntax Error: TypeError: Cannot set properties of undefined (setting ‘parent‘)
495 0
|
4月前
|
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.
|
7月前
|
API Android开发 开发者
failed to set system property error code: 0x18
failed to set system property error code: 0x18
332 1
|
7月前
|
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.
181 1
|
7月前
|
druid Java
Error attempting to get column ‘createTime‘ from result set的异常
Error attempting to get column ‘createTime‘ from result set的异常
442 0
|
7月前
|
XML Java 数据库连接
mybatis和mybatiplus中Error attempting to get column ‘xx‘ from result set
mybatis和mybatiplus中Error attempting to get column ‘xx‘ from result set
193 0
|
12天前
|
算法
你对Collection中Set、List、Map理解?
你对Collection中Set、List、Map理解?
48 18
你对Collection中Set、List、Map理解?
|
6天前
|
存储 缓存 安全
只会“有序无序”?面试官嫌弃的List、Set、Map回答!
小米,一位热衷于技术分享的程序员,通过与朋友小林的对话,详细解析了Java面试中常见的List、Set、Map三者之间的区别,不仅涵盖了它们的基本特性,还深入探讨了各自的实现原理及应用场景,帮助面试者更好地准备相关问题。
42 20
|
22天前
|
存储 C++ 容器
【C++】map、set基本用法
本文介绍了C++ STL中的`map`和`set`两种关联容器。`map`用于存储键值对,每个键唯一;而`set`存储唯一元素,不包含值。两者均基于红黑树实现,支持高效的查找、插入和删除操作。文中详细列举了它们的构造方法、迭代器、容量检查、元素修改等常用接口,并简要对比了`map`与`set`的主要差异。此外,还介绍了允许重复元素的`multiset`和`multimap`。
29 3
【C++】map、set基本用法