public static void UnloadModule(this IXboxConsole xbCon, string module) { uint handle = xbCon.ExecuteRPC <uint>(XDRPCMode.System, "xam.xex", 1102, new object[] { module }); if (handle != 0u) { xbCon.WriteInt16(handle + 0x40, 1); xbCon.ExecuteRPC <uint>(XDRPCMode.System, "xboxkrnl.exe", 417, new object[] { handle }); } }