Could anyone create complete GetVolumeInformation using System plug-in from this site?
Thanks before.https://msdn.microsoft.com/en-us/library/windows/desktop/aa364993%28v=vs.85%29.aspx
4 posts
Thanks before.https://msdn.microsoft.com/en-us/library/windows/desktop/aa364993%28v=vs.85%29.aspx
!include LogicLib.nshJust don't ask me to create a junction point with the system plugin... 😎
!define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
Section
System::Call 'KERNEL32::GetVolumeInformation(t "c:\",i0,i0,*i,*i,*i0r1,i0,i0)i.r0'
DetailPrint return=$0,FileSystemFlags=$1
IntOp $2 $1 & ${FILE_SUPPORTS_REPARSE_POINTS}
${If} $0 <> 0
${AndIf} $2 <> 0
DetailPrint FILE_SUPPORTS_REPARSE_POINTS
${EndIf}
SectionEnd
Great, thanks 😁Originally Posted by Anders View PostJust don't ask me to create a junction point with the system plugin... 😎