Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
use strict; use Win32::TieRegistry; # Get the Windows XP CD Key print &getXPkey(qq!HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT +\\CurrentVersion\\\\DigitalProductId!); # Get Office 2003 CD Key # You need to get the GUID which is different on every machine my @office = $Registry->{"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Off +ice\\11.0\\Registration"}->SubKeyNames; print &getXPkey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Office\\11.0 +\\Registration\\$office[0]\\\\DigitalProductId"); sub getXPkey { use integer; my $registry = shift; my @bKeyChars = map(ord, (qw(B C D F G H J K M P Q R T V W X Y 2 3 4 + 6 7 8 9))); my $nCur; my @bDigitalProductID = unpack('C*', $Registry->{$registry}); my @bProductKey = @bDigitalProductID[52..66]; my $sCDKey = ''; for (my $ilByte = 24; $ilByte >= 0; $ilByte--) { $nCur = 0; for (my $ilKeyByte = 14; $ilKeyByte >= 0; $ilKeyByte--) { $nCur = $nCur * 256 ^ $bProductKey[$ilKeyByte]; $bProductKey[$ilKeyByte] = $nCur / 24; $nCur %= 24; } $sCDKey = chr($bKeyChars[$nCur]) . $sCDKey; $sCDKey = '-' . $sCDKey if ($ilByte % 5 == 0 and $ilByte != 0); } return $sCDKey; }

In reply to Finding Windows XP CD Key by wgannon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-19 05:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found