Click here to Skip to main content
15,889,871 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
سلام آقای دشتی خسته نباشید سئوال فوری دارم امید دارم که هر چه سریعتر به جواب برسم
آیا شما با برنامه ای که برای استخراج شماره سریال هارد اعلام شده توانسته اید کار کنید
من که نتوانستم؟
نمی توانم
DLL file DriveInfoEx.DLL
را در SV2010 تشکیل دهم می توانید کمکم کنید> تلفن [DELETED] است با تشکر الهیاری

[Google Translate]

Hi, I have a quick question I hope that's plain do not bother to answer as soon as I get
Do you plan to extract the drive's serial number you were able to work
I could not?
I can not
DLL file DriveInfoEx.DLL
If I can help in forming SV2010> Telephone [DELETED] thanks Alhyary
Posted
Updated 19-Dec-13 9:03am
v2
Comments
OriginalGriff 19-Dec-13 15:04pm    
Never post your personal details in any forum, unless you really like spam! If anyone replies to you, you will receive an email to let you know.

I'm sure English is not your native language, but it is the default language for this site.
In English, your question makes no sense at all.
Please, either try to find a better translation of your question to English, or find a site in your own native language, as they may be able to help you better than we can!
Use the "Improve question" widget to edit your question and provide better information.

1 solution

In case you are looking for how to get the harddisk serial no: You can do this with Win API GetVolumeInformation.

http://msdn.microsoft.com/en-us/library/windows/desktop/aa364993(v=vs.85).aspx[^]

C++
BOOL WINAPI GetVolumeInformation(
  _In_opt_   LPCTSTR lpRootPathName,
  _Out_opt_  LPTSTR lpVolumeNameBuffer,
  _In_       DWORD nVolumeNameSize,
  _Out_opt_  LPDWORD lpVolumeSerialNumber,
  _Out_opt_  LPDWORD lpMaximumComponentLength,
  _Out_opt_  LPDWORD lpFileSystemFlags,
  _Out_opt_  LPTSTR lpFileSystemNameBuffer,
  _In_       DWORD nFileSystemNameSize
);
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900