Forgotten the name - pasting CD key shell extension

B

Ben

Hi all,

I'm sure in the last couple of months someone pasted a link to a great
little shell extension with the sole purpose of taking the pain out of
entering CD keys and serials into software installs - it was able to
handle multiple separate text boxes for entry etc etc. Not having a lot
of luck on Google archives, anyone remember anything about it?

Thanks!

B
 
K

Klaatu

I'm sure in the last couple of months someone pasted a link to a great
little shell extension with the sole purpose of taking the pain out of
entering CD keys and serials into software installs - it was able to
handle multiple separate text boxes for entry etc etc. Not having a
lot of luck on Google archives, anyone remember anything about it?

Not specifically. I do this on my own computer using a little AutoIt
script. The script does other things, but here's the relevant parts:

Code:
If Not HotKeySet('^d', 'Plug') Then
$RC = MsgBox(1, 'Catch', 'HotKey could not be set (^d)!', 30)
If $RC = 2 Then Exit
EndIf
While $TRUE
Sleep(1000)
Wend
Exit

Func Plug()
Local $I
Local $CDKEY = ClipGet()

$CDKEY = StringReplace($CDKEY, "-", "")
Sleep(1000)
$I = 1
While $I <= StringLen($CDKEY)
If StringMid($CDKEY, $I, 2) = @CRLF Then
Send(@CR)
$I = $I + 1
Else
Send(StringMid($CDKEY, $I, 1), 1)
EndIf
Sleep(66)
$I = $I + 1
Wend
EndFunc   ;==>Plug

I just copy the CD key to the clipboard, then press Control-D to paste
it. Works great.

AutoIt (freeware, of course) available at http://www.autoitscript.com.

HTH
 
B

Ben

Klaatu said:
Not specifically. I do this on my own computer using a little AutoIt
script. The script does other things, but here's the relevant parts:
<snippy>

Excellent! Thanks for that :) I'm pretty sure someone had a neat
little gadget that added something like "Paste CD Key" to the context
menu, but this will do nicely if my brain doesn't kick back into gear
and remember the name.

B
 
N

Ninou

Hi all,

I'm sure in the last couple of months someone pasted a link to a great
little shell extension with the sole purpose of taking the pain out of
entering CD keys and serials into software installs - it was able to
handle multiple separate text boxes for entry etc etc. Not having a lot
of luck on Google archives, anyone remember anything about it?

Thanks!

B

another utility
Serial Paste

http://www.firejocker.com/serialpaste/?page=presentation
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top