Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

FAT or NTFS


2 replies to this topic

tuteja

tuteja
  • Full Members
  • 35 posts

Posted 07 August 2008 - 03:15

I'm writting msi based installation and
a need to determine the file system type of the target disk (i.e., is it
FAT or NTFS?). My application requires NTFS, so I want to display a
warning dialog to the user during Setup if they attempt to do the
installation on a FAT disk. Is the file system information saved in the
registry somewhere? or How do i check ?

Glytzhkof

Glytzhkof
  • Moderators
  • 1,447 posts

Posted 07 August 2008 - 07:54

See attached script if using a VBScript CA is an option. Otherwise you can do it via C++ as well.

Attached Files

  • Attached File  fs.vbs   231bytes   34 downloads

Regards
-Stein Åsmul

tuteja

tuteja
  • Full Members
  • 35 posts

Posted 07 August 2008 - 15:40

Thanks Glytzhkof for the script. Let me try it.