检查 MSI 包中的文件系统类型

发布于 2024-08-31 14:15:54 字数 169 浏览 6 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风筝有风,海豚有海 2024-09-07 14:15:55

您可以使用自定义操作,最好是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文