Page 1 of 3
Question about serial number generators.
Posted: 05 Mar 2012, 12:36
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
Re: Question about serial number generators.
Posted: 05 Mar 2012, 12:42
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?
Re: Question about serial number generators.
Posted: 05 Mar 2012, 12:59
by zetrox
Yes AlphaNumeric serials that are saved to .txt file

.
Re: Question about serial number generators.
Posted: 05 Mar 2012, 13:01
by MrNiitriiX
if i were you i would just create my own with a trusty OLD batch script lol
Re: Question about serial number generators.
Posted: 05 Mar 2012, 13:03
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

Re: Question about serial number generators.
Posted: 05 Mar 2012, 13:18
by zetrox
Haha that would be great =) thank you very much.
Re: Question about serial number generators.
Posted: 05 Mar 2012, 13:28
by MrNiitriiX
i posted something before which was fail (copy paste not always good...

)
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
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)
Re: Question about serial number generators.
Posted: 05 Mar 2012, 14:25
by avatar_24
Try a demo.
Re: Question about serial number generators.
Posted: 05 Mar 2012, 14:54
by ChattChitto
OK! I've written a software for you to use.
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:
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
Re: Question about serial number generators.
Posted: 05 Mar 2012, 15:04
by avatar_24
Thanks.
That was fast!
I'll take it also if you don't mind
