/// <summary> /// Not sure about the content - but it actually sends your GPU with its driver version. /// </summary> /// <returns></returns> private PacketOut CreateReportPacket() { PacketOut o = new PacketOut(8000); o.WriteShort(8704); o.WriteShort(18197); o.WriteByte(81); o.WriteByte(251); o.WriteString("Windows (6.2.9200)|ATI Radeon HD 3600 SeriesDrv Version : 8.17.10.1129", 71); // Only for testing. And yes, my GPU sucks. Problem? o.FinalizeLengthAndChecksum(); return(o); }