Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2006
    Posts
    4

    Installing a program on a network x amount of times

    Hi, Is it possible to install a program on networked workstations 'x' amount of time depending on the user license but then not allow any more, and setup displays a message informing the user accordingly.

    I assume a file would have to be placed on the server which would be read and updated by setup each time it is run, is it possible, is there a better way of doing it

    Hope someone can help, Regards C

  2. #2
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    You could possibly use the LuaSocket library to detect when there are more than X number of applications running. Creating a licensing server, and then your app would be the client to the server. This would allow for a "floating" license concept meaning they could have the app installed on more than 5 machines, yet it would only run on up to 5 machines at a time.

  3. #3
    Join Date
    Feb 2006
    Posts
    4
    Hi

    Thanks for the reply I'll investigate it as it sounds just what I need

    In the mean time I dabbled and came up with this for a single user install, which although a bit noddy it does seem to work,

    result=File.DoesExist("P:\\program\\check.ini");
    if result then
    result = Dialog.Message("License Exceeded", "This is a single user license and has been installed previously. Please uninstall from the other workstation if you wish to install on this one", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
    Application.Exit(0);
    end

Similar Threads

  1. Network Install
    By SMRoe in forum Setup Factory 7.0
    Replies: 1
    Last Post: 03-26-2005, 10:52 AM
  2. Strange behaviour of the Close Program action
    By Elp in forum Setup Factory 6.0
    Replies: 2
    Last Post: 05-17-2004, 10:38 AM
  3. HOWTO: Limit the Number of Times an Install can be Run
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-17-2002, 02:58 PM
  4. HOWTO: Make a Program Run Every Time the System Starts
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-01-2002, 09:44 AM
  5. Running the program across a network
    By Bokie in forum AutoPlay Menu Studio 3.0
    Replies: 1
    Last Post: 07-19-2000, 03:24 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts