Usage: proc_study [-d][-m][-x][-t][name|pid] -d Show thread detail. -m Show memory detail. -x Show processes, memory information and threads. -t Show process tree. name Show information about processes that begin with the name specified. -e Exact match the process name. pid Show information about specified process.
All memory values are displayed in KB. Abbreviation key: Pri Priority Thd Number of Threads Hnd Number of Handles VM Virtual Memory WS Working Set Priv Private Virtual Memory Priv Pk Private Virtual Memory Peak Faults Page Faults NonP Non-Paged Pool Page Paged Pool Cswtch Context Switches
Options: [-k key_path] Specifies key path (e.g.: -k "ControlSet001\Control\Session Manager") [-v value_name] Specifies value name (e.g.: -v BootExecute) [-l] List subkeys information [-e] List values information [-s] Show key security description information [-w output_file] Dump attribute to a file
SYSTEM INFORMATIONS --------------- ProcessorArchitecture : x86 Number Of Processors : 16 OS Version : 6.1 BuildNumber : 7600 CSDVersion : Platform : Windows Server 2003, Windows XP, or Windows 2000
NtfsStudy v1.0 - Ntfs format study tool. Copyright (C) 2012-2013 nightxie 0CCh - www.0cch.net
Usage : NtfsStudy.exe [options] -f file_path_name -f file_path_name Specifies the target file path to parse.
options:
[-r file_reference] Specifies the target file reference. NtfsStudy will parse the REFERENCE rather than the path which Specifies by -f. NtfsStudy will just use the path root. [-a] Show the file record information of the target file. [-l] List the files in the directory. [-w attribute_id output_file_path] Write target attribute to a file. (The attribute size must less than 128mb) [-v attribute_type] Show detail attribute information specified by attribute_type. [-d attribute_type [start_offset range]] Show binary information specified by attribute_type. [-s secure_id] Show the security descriptor specified by secure_id. [-c] Show the attributes definition columns.
#pragma pack(push,8) typedefstructtagTHREADNAME_INFO { DWORD dwType; // Must be 0x1000. LPCSTR szName; // Pointer to name (in user addr space). DWORD dwThreadID; // Thread ID (-1=caller thread). DWORD dwFlags; // Reserved for future use, must be zero. } THREADNAME_INFO; #pragma pack(pop)