<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";}
span.EmailStyle19
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=WordSection1>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>Dear BigFix administrators,<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>The Windows Registry Wizard has been updated to improve handling
of REG_DWORD values. While these registry values are internally hexadecimal,
administrators may choose to enter hexadecimal or integer values. The wizard will
now interpret which type of value it has been given and construct appropriate
detection relevance and action script. Additionally, bounds checking has been
added so that oversized values and invalid hexadecimal strings cannot be
accidentally used.<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>Some examples:<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>1) Input value: starts with "0x" [e.g. "0x20"]
<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Solution: treat it as hexadecimal<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Target Relevance: "...("20" != it as
integer as hexadecimal)..."<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Action Script: "...=dword:00000020"<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>2) Input value: contains only digits [e.g. "20"] <o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Solution: treat it as integer<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Target Relevance: "...(20 != it as
integer)..."<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Action Script: "...=dword:00000014"
[converted integer 20 into hexadecimal 20, which is "14"]<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>3) Input value: contains letters and possibly numbers, but does
not start with "0x" [e.g. "A0"]<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Solution: treat it as hexadecimal<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Target Relevance: "...("A0" != it as
integer as hexadecimal)..."<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'> Action Script: "...=dword:000000A0"<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<pre><span style='font-size:12.0pt;color:black'>Additionally, the DWORD caption in the wizard has been changed from "Enter in hexadecimal form (8 character maximum)" to "8 characters maximum (include 0x for hexadecimal)."<o:p></o:p></span></pre>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'><o:p> </o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>Thank you,<o:p></o:p></span></p>
<p class=MsoNormal><span style='font-size:12.0pt;font-family:"Courier New";
color:black'>BigFix Application Engineering Team<o:p></o:p></span></p>
</div>
</body>
</html>