Question about serial number generators.

A Place For Programmers Of All Levels To Discuss Programming & Web Building.

Moderator: Community Moderator

zetrox
Soldier First Class
Soldier First Class
Posts: 22
Joined: 28 Jan 2010, 11:08
Been thanked: 1 time

Question about serial number generators.

Post by zetrox »

I have 1 question and maybe some of you can help me.
My friend starting some work now and what I need to find is a program that generating serial numbers combinations of numbers and letters doesnt matter how many of em .. 30, 40 characters serial numbers.
For example I type that I need 100 serial numbers, program generates it and saves ti to for example .txt file from 1 to 100 (with date and time of generated numbers would be great as well).
So my question is, if such thing exists, what is the name of it and is it possible to get it :).

Thank you for your time.
Regards
Zetrox
User avatar
ChattChitto
Site Admin
Site Admin
Posts: 13868
Joined: 20 Aug 2009, 06:20
Status: The Don
Location: The Fourth Dimension
Has thanked: 11 times
Been thanked: 38 times
Contact:

Re: Question about serial number generators.

Post by ChattChitto »

So you basically just need a Software that generates X Number of randomly created Serials and save them into a .txt file?
Are these Serials AlphaNumeric?
To err is human, to forgive is divine
We can't all be heroes, because somebody has to sit on the curb and applaud when they go by.

ChattChitto RG - Apps Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=104
ChattChitto RG - Movies Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=5092
ChattChitto RG - Music Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=34836
zetrox
Soldier First Class
Soldier First Class
Posts: 22
Joined: 28 Jan 2010, 11:08
Been thanked: 1 time

Re: Question about serial number generators.

Post by zetrox »

Yes AlphaNumeric serials that are saved to .txt file :).
User avatar
MrNiitriiX
Premium Uploader
Premium Uploader
Posts: 2197
Joined: 19 Apr 2010, 14:52
Location: between space and time
Has thanked: 24 times
Been thanked: 164 times

Re: Question about serial number generators.

Post by MrNiitriiX »

if i were you i would just create my own with a trusty OLD batch script lol
"Injustice anywhere is a threat to justice everywhere." - Martin Luther King
Image
Upload List
User avatar
ChattChitto
Site Admin
Site Admin
Posts: 13868
Joined: 20 Aug 2009, 06:20
Status: The Don
Location: The Fourth Dimension
Has thanked: 11 times
Been thanked: 38 times
Contact:

Re: Question about serial number generators.

Post by ChattChitto »

I don't know a current existing application that does that even though its not complex.
If i have time I'll write one for you and upload it. I'll check this now :)
To err is human, to forgive is divine
We can't all be heroes, because somebody has to sit on the curb and applaud when they go by.

ChattChitto RG - Apps Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=104
ChattChitto RG - Movies Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=5092
ChattChitto RG - Music Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=34836
zetrox
Soldier First Class
Soldier First Class
Posts: 22
Joined: 28 Jan 2010, 11:08
Been thanked: 1 time

Re: Question about serial number generators.

Post by zetrox »

Haha that would be great =) thank you very much.
User avatar
MrNiitriiX
Premium Uploader
Premium Uploader
Posts: 2197
Joined: 19 Apr 2010, 14:52
Location: between space and time
Has thanked: 24 times
Been thanked: 164 times

Re: Question about serial number generators.

Post by MrNiitriiX »

i posted something before which was fail (copy paste not always good... :P)

this will generate you a 40character AlphaNumeric serial in cmd. All we need is for it to export to txt and add time and date :P

Code: Select all

@echo off 
setlocal enabledelayedexpansion 
set pas= 
set s=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 
for /l %%a in (1,1,40) do ( 
   set /a n=!random! %% 62 
   call set pas=!pas!%%s:~!n!,1%%) 
echo %pas% 
pause
(pause at end added for testing purposes)

-- 06 Mar 2012, 01:00 --

obviously you can use the goto command to start from beginging again (creating serials untill you stop the script)
"Injustice anywhere is a threat to justice everywhere." - Martin Luther King
Image
Upload List
User avatar
avatar_24
Premium Uploader
Premium Uploader
Posts: 2324
Joined: 03 Jan 2010, 03:07
Location: Silence Glory
Has thanked: 1 time

Re: Question about serial number generators.

Post by avatar_24 »

Try a demo. :)

Code: Select all

http://www.serialkeymaker.com/
User avatar
ChattChitto
Site Admin
Site Admin
Posts: 13868
Joined: 20 Aug 2009, 06:20
Status: The Don
Location: The Fourth Dimension
Has thanked: 11 times
Been thanked: 38 times
Contact:

Re: Question about serial number generators.

Post by ChattChitto »

OK! I've written a software for you to use.

Image

Features:
  • Able to create 40 Character Long Alpha-Numeric Serials.
  • Shows All Created Serials In The Status Area.
  • Automatically Generate .TXT File containing the full list of Generated Serials. (the generated .txt file can be found in the same directory as the software)
  • Portable.
  • Multi-Platform.
  • Very Fast! (I was able to create and store 100 Serial in 1s)
Up-Coming Features:
  • Time & Date next to each generated Serial. (if i have time and your interested)
Download Size:

Code: Select all

29.27 KB
Download Link:

Code: Select all

http://www.mediafire.com/?3one49xn00ud3yk

OR

http://www.mirrorcreator.com/files/1A3LZ9VU/Random_Serial_Generator__www.chattchitto.com_.zip_links
To err is human, to forgive is divine
We can't all be heroes, because somebody has to sit on the curb and applaud when they go by.

ChattChitto RG - Apps Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=104
ChattChitto RG - Movies Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=5092
ChattChitto RG - Music Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=34836
User avatar
avatar_24
Premium Uploader
Premium Uploader
Posts: 2324
Joined: 03 Jan 2010, 03:07
Location: Silence Glory
Has thanked: 1 time

Re: Question about serial number generators.

Post by avatar_24 »

Thanks.
That was fast! :eek:
I'll take it also if you don't mind :)
Locked

Return to “Programming/Web Building Chat & Support”