检查 MSI 包中的文件系统类型
在我的 MSI 包中,我需要使用 cacls.exe 设置目录的用户权限。它在 NTFS 环境中运行良好,但在 Fat32 文件系统上运行时失败。有没有办法确定软件安装驱动器的文件系统类型?
我正在使用 WiX 3 创建 MSI 包,但任何指向 MSI 数据库的提示也会有所帮助。
非常感谢。
In my MSI package I need to set user rights to a directory using cacls.exe. It works fine in an NTFS environment but fails when run on a Fat32 file system. Is there a method to determine the type of file system of the drive the software is installed to?
I'm using WiX 3 to create my MSI package but any hint pointing to the MSI database would help as well.
Many thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用自定义操作,最好是 dll,但 vbscript 或 bat 文件也可以。在自定义操作中,您可以调用 wmi root\cimv2\Win32_LogicalDisk\FileSystem 属性,该属性返回文件系统类型。那么您的 CA 可以将文件系统类型作为安装程序属性返回。
You could use a custom action preferably a dll, however a vbscript or bat file will work. in the custom action you can call the wmi root\cimv2\Win32_LogicalDisk\FileSystem property which returns the file system type. then your CA can return the file system type as a installer property.