Help in writting a program

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • razanrizk@gmail.com

    Help in writting a program

    Hello all,
    if we could write a program in C or C++.NET that:

    1) read from a text file containing two columns; vol-Id and license
    key (it
    could be multiple of them)
    2) when customers run the program, it will detect the vol-Id of the
    machine
    and finding the matching license key in the text file, and then add
    the
    license registry entry to the machine.


    where we need to install 22 servers. SO, I have
    22 VOl-ID, and ideally, I will need to run this program in 22 servers,
    and
    the license will be registered automatically in the registry.

    Can Anyone help in this script?
  • Jack Klein

    #2
    Re: Help in writting a program

    On Wed, 24 Sep 2008 05:20:20 -0700 (PDT), razanrizk@gmail .com wrote in
    comp.lang.c:
    Hello all,
    if we could write a program in C or C++.NET that:
    >
    1) read from a text file containing two columns; vol-Id and license
    key (it
    could be multiple of them)
    2) when customers run the program, it will detect the vol-Id of the
    machine
    and finding the matching license key in the text file, and then add
    the
    license registry entry to the machine.
    >
    >
    where we need to install 22 servers. SO, I have
    22 VOl-ID, and ideally, I will need to run this program in 22 servers,
    and
    the license will be registered automatically in the registry.
    >
    Can Anyone help in this script?
    Any competent programmer should be able to read the list of id's and
    license keys, in just about any language. If you do not have anyone
    with the skills to do that in some language or another, you had better
    hire a programmer.

    As to reading a "vol-Id" of the machine, whatever that is, and adding
    things to the Windows registry, these things cannot be done in
    Standard C. Neither can anything in C++, or in .NET.

    You need to ask this in a Windows programming newsgroup.
    news:comp.os.ms-windows.program mer.win32 is a good one for asking
    questions about "vol-Id" and the Windows registry.

    --
    Jack Klein
    Home: http://JK-Technology.Com
    FAQs for
    comp.lang.c http://c-faq.com/
    comp.lang.c++ http://www.parashift.com/c++-faq-lite/
    alt.comp.lang.l earn.c-c++

    Comment

    Working...