DriveInfo.dll - NSIS extension DLL by Amir Szekely (aka KiCHiK)

Available functions:
   GetDriveLabel - Returns the drive's label
   GetDriveFS - Returns the drive's file system name

Usage:
   Push drive root directory (C:\ or \\network\dir\) call the function and pop the result.
   Note: always put the trailing backslash! Don't use C: use C:\.

Example:
   GetDriveLabel "C:\"
   Pop $0
   GetDriveFS "C:\"
   Pop $1
   MessageBox MB_OK "$0 (C:) - $1"