Citrix 网络驱动器上的 Installshield 权限?
我正在使用 installshieldexpress 编写一个简单的安装程序。我需要设置数据库目录的读/写/修改权限。 (因为 Vista/Win7 用户的权限受到限制)
我正在为“DATABASDIR”中的所有文件夹设置 FullControl 权限。 ([%USERDOMAIN] [LogonUser])。 这在 XP / Vista / Win 7 等中工作正常。
问题:
当用户在 Citrix 上安装并选择网络驱动器(N 代表数据库文件夹)时,权限设置会引发错误:
“在对象上设置权限时出错”N :\PathToDBDir\文件夹” 系统错误:系统找不到指定的路径(3)”
但是该文件夹已存在...它刚刚被安装程序本身放在那里???为什么它找不到自己编写的文件夹???
I'm using installshield express to write a simple installer. I need to set read/write/modify rights to the database directory. ( Because of Vista/Win7 users with restricted rights)
I'm setting FullControl permissions to all folders within "DATABASDIR".
( [%USERDOMAIN] [LogonUser] ).
This works fine in XP / Vista / Win 7 etc.
The problem:
When users install on Citrix, and choose a network drive (N for the database folder, the setting of permissions throws an error:
"Error while setting permissions on object "N:\PathToDBDir\Folder"
System Error: The system cannot find the path specified (3)"
But the folder is existing ... it has just been put there by the installer itself ??? Why doesn't it find the folder it wrote itself ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于谁在乎:
嗯,似乎 MSI 或 Installshield 或其他什么有错误......你无法在网络文件夹上设置权限。 (所有 Windows 版本。)
我们的解决方案是在写入所有文件后添加自定义操作,并通过使用命令行参数 [DATABASEDIR] 调用 exe 来自行设置文件夹权限...
For who cares:
Well, seems like there's an error with MSI or Installshield or whatever ... you can't set rights on a nework folder. (all windows versions.)
Our solution was to add a custom action after all files been written, and set the folder permission yourself by calling an exe with command line params [DATABASEDIR] ...