PEB peb = new PEB();
// System.out.println(""+1);
if (readVirtualMemoryToStructure(pbi.PebBaseAddress, peb))
if (peb.ProcessParameters != null)
{
RTL_USER_PROCESS_PARAMETERS userParams = new RTL_USER_PROCESS_PARAMETERS();
int userParamsSize = userParams.size(); //x32 = 784, x64 = 1264
// System.out.println(""+2);
if (readVirtualMemoryToStructure(peb.ProcessParameters, userParams))
{
// System.out.println("MaximumLength "+userParams.CommandLine.MaximumLength);
if (userParams.CommandLine.MaximumLength > 0)