Welcome![Sign In][Sign Up]
Location:
Search - GetVolumeInformation

Search list

[Process-Threadzbxi

Description: 文件-进程关联演示程序 pjf(jfpan20000@sina.com) 1、首先使用ZwQuerySystemInformation查询所有进程句柄, 2、获取句柄所代表对象信息,查出目标文件。核心态程序相对简单,对于 用户态程序,使用ZwQueryInformationFile同时与GetFileInformationByHandle、 GetVolumeInformation二API搭配获得之(前者得文件除去卷的路径名,后二者 得卷名) 另外可用ZwQueryObject。 3、综合1,2即完成-document-related processes pjf Demonstration Program (jfpan20000@sina.com) 1, the first to use ZwQuerySystemInformation process handle all inquiries, 2, represented by the acquisition target handle information, to identify the target file. Core state procedure is relatively simple, for the user state, the use of ZwQueryInformationFile GetFileInformationByHandle with the same time, GetVolumeInformation two API gained mix (in the former Vol remove documents from the path, in the latter two volumes) Also available ZwQueryObject. 3, the completion of comprehensive 1,2
Platform: | Size: 2271 | Author: 周继波 | Hits:

[Windows DevelopIS8

Description: CODE: Getting the Volume Serial Number Document ID: Q108728 This article applies to the following: Product(s): InstallShield Professional 6.x, 7.x , InstallShield Developer - All Versions, InstallShield DevStudio 9.x, InstallShield AdminStudio - All Versions Last Revised On: 10/30/2003 Summary This article provides InstallScript code that will get the volume serial number of the hard drive using the Windows API GetVolumeInformation( ).
Platform: | Size: 2701201 | Author: sadf | Hits:

[Windows Develop生成序列号

Description: 这是一个序列号生成程序,可以使你的程序看起来专业-This is one serial number generator tool, you can add it into you proagram to make it more professional !
Platform: | Size: 50176 | Author: 赵志强 | Hits:

[Process-Threadzbxi

Description: 文件-进程关联演示程序 pjf(jfpan20000@sina.com) 1、首先使用ZwQuerySystemInformation查询所有进程句柄, 2、获取句柄所代表对象信息,查出目标文件。核心态程序相对简单,对于 用户态程序,使用ZwQueryInformationFile同时与GetFileInformationByHandle、 GetVolumeInformation二API搭配获得之(前者得文件除去卷的路径名,后二者 得卷名) 另外可用ZwQueryObject。 3、综合1,2即完成-document-related processes pjf Demonstration Program (jfpan20000@sina.com) 1, the first to use ZwQuerySystemInformation process handle all inquiries, 2, represented by the acquisition target handle information, to identify the target file. Core state procedure is relatively simple, for the user state, the use of ZwQueryInformationFile GetFileInformationByHandle with the same time, GetVolumeInformation two API gained mix (in the former Vol remove documents from the path, in the latter two volumes) Also available ZwQueryObject. 3, the completion of comprehensive 1,2
Platform: | Size: 2048 | Author: 周继波 | Hits:

[Windows DevelopIS8

Description: CODE: Getting the Volume Serial Number Document ID: Q108728 This article applies to the following: Product(s): InstallShield Professional 6.x, 7.x , InstallShield Developer - All Versions, InstallShield DevStudio 9.x, InstallShield AdminStudio - All Versions Last Revised On: 10/30/2003 Summary This article provides InstallScript code that will get the volume serial number of the hard drive using the Windows API GetVolumeInformation( ).-CODE: Getting the Volume Serial NumberDocument ID: Q108728This article applies to the following: Product (s): InstallShield Professional 6.x, 7.x, InstallShield Developer- All Versions, InstallShield DevStudio 9.x, InstallShield AdminStudio- All VersionsLast Revised On : 10/30/2003SummaryThis article provides InstallScript code that will get the volume serial number of the hard drive using the Windows API GetVolumeInformation ().
Platform: | Size: 2701312 | Author: | Hits:

[OS programGetVolumeInfo

Description: 获取系统信息的小程序,SDK+VS2008开发ideas-Information acquisition system of small procedures, SDK+ VS2008 to develop ideas
Platform: | Size: 2058240 | Author: 梦紫涵 | Hits:

[MPIddd

Description: 硬盘注册码,主要是算法根据硬件编号生成注册号-Private Declare Function GetVolumeInformation& Lib "kernel32" _ Alias "GetVolumeInformationA" (ByVal lpRootPathName _
Platform: | Size: 10240 | Author: jyg | Hits:

[Windows DevelopAPI

Description: unit Unit1 interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls type TForm1 = class(TForm) Button1: TButton Edit1: TEdit Button2: TButton procedure Button1Click(Sender: TObject) procedure Button2Click(Sender: TObject) private { Private declarations } public { Public declarations } end var Form1: TForm1 implementation {$R *.dfm} uses Registry, MMSystem, DDEMAN, ClipBRD procedure TForm1.Button1Click(Sender: TObject) var SerialNum:Dword a,b: Dword Buffer: array [0..255] of char Num:string begin GetVolumeInformation( C:\ , nil,0,@SerialNum,a,b,nil,0) Num:=IntToHex(HiWord(serialNum),4)+ -- + IntToHex(LoWord(SerialNum),4) Edit1.text:=(Num) end procedure TForm1.Button2Click(Sender: TObject) Var buffer:array [0..255] of char buffsize:Dword begin buffsize:=sizeOf(Buffer) GetUSERNAME(@buffer,buffsize) ShowMessage(buffer) end end. -unit Unit1 interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls type TForm1 = class(TForm) Button1: TButton Edit1: TEdit Button2: TButton procedure Button1Click(Sender: TObject) procedure Button2Click(Sender: TObject) private { Private declarations } public { Public declarations } end var Form1: TForm1 implementation {$R*.dfm} uses Registry, MMSystem, DDEMAN, ClipBRD procedure TForm1.Button1Click(Sender: TObject) var SerialNum:Dword a,b: Dword Buffer: array [0..255] of char Num:string begin GetVolumeInformation( C:\ , nil,0,@SerialNum,a,b,nil,0) Num:=IntToHex(HiWord(serialNum),4)+--+ IntToHex(LoWord(SerialNum),4) Edit1.text:=(Num) end procedure TForm1.Button2Click(Sender: TObject) Var buffer:array [0..255] of char buffsize:Dword begin buffsize:=sizeOf(Buffer) GetUSERNAME(@buffer,buffsize) ShowMessage(buffer) end end.
Platform: | Size: 219136 | Author: delphi | Hits:

[OS programgetVolumeInformation

Description: 获取硬盘序列号,以便进行相关的处理,比如加密灯用途-Get hard drive serial number for the associated processing, such as the use of encryption lights. .
Platform: | Size: 724992 | Author: liguirong | Hits:

[File OperateGetFileSystem

Description: 使用GetVolumeInformation函数还可以获取磁盘驱动器的文件系统类型。-Use GetVolumeInformation function can also access the disk drive file system type.
Platform: | Size: 40960 | Author: 张钰 | Hits:

[OS program0520

Description: 可获取驱动器的卷标。使用API函数GetVolumeInformation可以获取驱动器的卷标。GetVolumeInformation函数还可以获取磁盘序列号和文件系统信息。-Available drive volume label. Can be obtained using the API function GetVolumeInformation drive volume label. GetVolumeInformation function can also access the disk serial number and file system information.
Platform: | Size: 103424 | Author: Matt | Hits:

[OS programljcpxx

Description: 我们在编程的时候有时会需要得到系统中逻辑磁盘的一些信息,如磁盘卷标、磁盘序列号、空间大小、剩余空间等,这些信息直接使用VB提供的函数显然是无法得到的。但是,借助于VB对WINDOWS API函数的支持,使用GetVolumeInformation和 GetDiskFreeSpace这两个API函数,我们就可以很容易的得到磁盘的相关信息。-When we programmed the system sometimes needs to be some logical disk information, such as the disk label, disk serial number, space, free space, and so on, the information provided directly a function of VB is obviously impossible to obtain. However, the help of VB to the WINDOWS API function support, the use GetDiskFreeSpace GetVolumeInformation and two API functions, we can easily obtain information on the disk.
Platform: | Size: 3072 | Author: lyf898 | Hits:

[Driver DevelopGetVolumInformation

Description: GetVolumePathName, GetVolumeInformation, GetDriveType
Platform: | Size: 6144 | Author: cshmax | Hits:

[OS programgetdisklist

Description: this source is how to get disk list. you will know how to use GetVolumeInformation function.
Platform: | Size: 789504 | Author: Kim Chol | Hits:

[OtherHardDiskDetect

Description: This is a sample haw to detect hard disk information (it is not GetVolumeInformation). This code can detect: Drive Model Number Drive Serial Number Drive Controller Revision Number Controller Buffer Size on Drive Drive Type Physical Geometry (Cylinders, Heads, Sectors).
Platform: | Size: 13312 | Author: mehdy2020 | Hits:

CodeBus www.codebus.net