How to specify license triad for volume license installer

I'm trying to create a volume license installer and specify a license server triad for server settings.  However it gives me an error if I enter 3 servers.  It only allows me to enter one server name.  How do I specify a triad?  For example: licsrv1:27050,licsrv2:27050,licsrv3:27050

ecaille,
First, I jsut wanted to mention that if you want help with VLM in the future, it is best to post in the VLM specific forum located here.
To solve this issue you have to use a workaround because the Volume License Installer creation process does not support more than one server, and unfortunately the XML files that are used for the installers also won't accept more than one server.
To fix this you can create 3 separate Volume License Installers, one for each server. You can then create a batch file that runs the first complete VLI (just running setup.exe so the software installs also), and then runs the vlmclient.exe from the second two VLIs. The vlmclient.exe is the file that adds the servers to the computer. Therefore by running the first VLI you install the software and the first server, and then you append the second and third server names to the registry key for the server by running the second two vlmclient.exe files. Note that you need to keep the Client folders (that contains vlmclient.exe) separate because you need to run each separately as the XML files have different configurations to add each new server. 
The shortcut for this is to simply copy the Client folder from the first VLI you create, and edit the <server></server> tags in the vlmclient.xml file in the two copies you make to contain the other two servers.
John B.
Applications Engineer
National Instruments

Similar Messages

  • How to specify Host Server for Replicated Virtual Desktops within RDVH Collection

    My question about how to specify Host Server for Replicated Virtual Desktops within Collection.
    I know there is a aswered thread on this, but that solution (wait a week) didn't work for me.
    So i have 2 servers, RDS01 and RDS02 with both 15 Hyper-V VM's and replicating to eachother. That part works fine.
    Now I wanted to make it easy for my users I build a Connection Broker: RDCB
    All went fine in that setup, but when I want to add the existing VM's from RDS01 and RDS02 to the collection it just radomly adds running ones and replicated ones.
    So both RDS01 and RDS02 have 15 VM's running and 15 replica's in stopped state, but when I look in my collection, it says RDS01 has 23 and RDS02 has 7 VM's. When I add them all, I see he wants to add a lot of stopped states replica's from RDS01 instead of
    the running ones from RDS02.
    How can I specify which one he should use? Or need I disable replication first, setup the whole RDCB collection thing, and then turn replication back on? Or does Hyper-V replication not work at all when used in a collection?
    I hope someone can help out here. I'm googling and trying for 1,5 week now, but i can;t get it right.
    Thanks in advance.

    Hi Robin,
    Thanks for your patience.
    After you removed Replication from 1 machine on both RDS01 and RDS02, please restart that machine. After that, please add this machine to the RD collection again to test how the issue goes.
    As we know, Hyper-V Replica provides asynchronous replication of Hyper-V virtual machines between two hosting servers. It is simple to configure and does not require either shared storage or any particular storage hardware. Any server workload that can be
    virtualized in Hyper-V can be replicated. Replication works over any ordinary IP-based network, and the replicated data can be encrypted during transmission. Hyper-V Replica works with standalone servers, failover clusters, or a mixture of both. The servers
    can be physically co-located or widely separated geographically. The physical servers do not need to be in the same domain, or even joined to any domain at all.
    Currently, would you please add only running state VMs to the RD CB collection? And would you please capture some screenshots of the error message? Thanks very much for your cooperation.
    Best regards,
    Sophia Sun
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to specify page encoding for XML reports.

    Hi,
    Environment: Apps:11.5.10, Oracle Reports: 10g
    I'm trying to generate XML tags by using a "rdf" report (10g).
    Initially I generated the XML tags before moving the report to server. In the output file I got
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    Then I moved the report to server and made the concurrent program output to XML.
    In the concurrent program output the tag is
    <?xml version="1.0" encoding="&Encoding"?>
    The output shows error
    ===============
    XML Parsing Error: XML declaration not well-formed
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    <?xml version="1.0" encoding="&Encoding"?>
    Its clear that there is something wrong with page encoding format which has to get assigned while run time. But its not happening so.
    How to specify the page encoding format?
    Any help would be appreciated.
    Thank you
    BKR.
    Edited by: BalaKrishna Reddy Avuthu on Aug 14, 2009 2:00 PM

    Remove the encoding so it says:
    <?xml version="1.0"?>
    Also, you will get a similar error if your xml tags for fields contain any special characters like & or #.

  • How to specify PACKAGE SIZE for to RFC_READ_TABLE from PyRFC?

    I'm trying to use PyRFC to extract large tables via RFC_READ_TABLE (due to an uncooperative/unsupportive basis team).
    I know that RFC_READ_TABLE supports calling it with PACKAGE SIZE since ERPConnect does it by default.
    In Python for Basis (Part 1), I learned how to specify an Open SQL where clause using the OPTIONS:
    result = connector.call('RFC_READ_TABLE',
                           QUERY_TABLE=tablename,
                           DELIMITER=delimiter,
                           OPTIONS = [{'TEXT':where_clause}])
    Is there a way, and how to specify PACKAGE SIZE in this case?
    Thanks

    Hi,
    the package size works, but you need to call the function module multiple times in a loop. Here's an excerpt of the attached script:
    recordcounter = 1          #needs to be >0 to get the while loop going
    iteration = 0              #the number of times the function module got called
    while recordcounter > 0:  #as long as the function module calll returns rows...
        tempresult = self.call('RFC_READ_TABLE',             
                                ROWSKIPS=iteration*fetchsize,  #defines the number of rows to skip
                                **parameters)
        iteration=iteration+1  #increase the iteration
        data = tempresult['DATA']    #assign the returned rows to a variable
        if len(data) > 0:      #have there been any rows?
            for row in data:      #Do something with them
        else:
            recordcounter=0    #set recordcounter to 0 to end the while loop.
    The script is far away from being perfect. It doesn't deal with RAW fields and the data types it returns are all strings. It does what I needed it to do but it may not be sufficient for what you may be trying to achieve.
    Best regards
    Lars

  • How to specify overflow clause for IOT

    Hi,
    I’m using OSDM v3.0.0.665
    How do I specify ‘overflow’ clause for index organized table (IOT)?
    I need to generate DDL something similar to this “ create table T1(…….) organization index..overflow".
    In OSDM, when I open physical model and table properties ‘IOT properties’ tab, I can see dropbox for overflow segment but no values in drop box, it is blank.
    I do have tablespace created in my physical model.
    I’m able to generate DDL for IOT but does not have ‘overflow’ clause.
    Thanks,
    Vikas

    David,
    Thanks for your response.
    After creating segment template, I’m able to generate overflow clause.
    However I’m still not able to specify tablespace for both – IOT table and overflow segment.
    If I specify tablespace for IOT (say T1) under ‘General’ tab and if I also specify overflow segment (with tablespace T2) under ‘IOT properties’ tab, I’d expect it to generate DDL with tablespace T1 for IOT and tablespace T2 for overflow.
    However it generates DDL with overflow tablespace T1 and does not generate any tablespace clause for IOT. So, IOT is created in default tablespace for user.
    I need DDL with tablespace clause for both – IOT as well as overflow segment.
    Can you please help?
    Also, how do I get rid of other storage clauses like PCTFREE, PCTUSED, MINEXTENTS, MAXEXTENTS etc..
    Thanks,
    Vikas

  • How to specify file names for the generated code in wscompile

    Hi,
    We want to follow a certain file naming conventions for the artifacts generated by wscompile.
    How is it possible to set the name for the service interface file, service implementation file etc....
    This is possible in AXIS ant task Wsdl2Java. How do we do it for wscompile.
    thanx

    Thanks Chris and c. Under Description I'm presented with three Names for the profile: ASCII, UniCode and Mac Script. ASCII and Mac Script are the same name for the profile, with nothing being in the UniCode Name box. Which do I change -- both?
    Am I going to screw things up in Photoshop if I change these names to something I can comprehend? Looks like I may just have to make a sticky-note list of the cryptic profile names with my own descriptive name as a reference. Thanks.

  • How to specify multiple sequence for multiple fields in a primary key!

    Hi,
    i have a table which has about 15 fields, one of the field is primary key and i am able to specify the sequence for it using toplink and when the object is created through toplink the sequence get generated automatically, which is fine.
    Now i have to add another sequence generated field to the table this field is not nullable and
    i am looking for a way in toplink to specify the sequence for this field too, so that when we create objects through toplink the value for the field is automatically generated instead of us fetching the next value from sequence using a sql statement and then using the set method for the field.
    is there a way i can specify a sequence for another field through toplink, while keeping the sequence settings for the primary field untouched.
    thanks for your help!
    -

    TopLink only supports a single sequence field in its' mappings. There should be an API you can use to get another sequence number from an event, but I could not find an easy one (please log a bug for this on EclipseLink). The following code might work if you define the other sequence in TopLink, but you could also just execute the raw SQL as you are doing.
    i.e. something like,
    preInsert(DescriptorEvent event) {
    MyObject object = (MyObject) event.getObject();
    object.setOtherId(event.getSession().getDatasourcePlatform().getSequence("MY_OTHER_SEQ").getGeneratedValue(event.getSession().getAccessor(), event.getSession()));
    -- James : http://www.eclipselink.org

  • How to specify time Spans for Message Trace in wpf Application

    I had been working on this report on Message trace in Office365. I would want to give filters for Startdate and enddate from my WPF(C#) application. How can i do that.
    i tried the following. When i specify them directly in the URL. they work perfectly fine but when i try to give them from the code, thats where it says value cannot be null,Parameter name: Source. What could be the problem.
    ub.Query="$filter=StartDate eq datetime'2015-01-01T00:00:00' and EndDate eq datetime'2015-01-07T23:59:59' &";
     string fullRestURL = Uri.EscapeUriString(ub.Uri.ToString());
    ub.Query = "$filter=StartDate%20eq%20datetime%272015-01-01T05:00:00%27%20and%20EndDate%20eq%20datetime%272015-01-11T06:00:00%27%20&";
     string fullRestURL = Uri.EscapeUriString(ub.Uri.ToString());

    Hi HarshitaK,
    This forum(WPF) is talk about how to use XAML technologies to productively create visually appealing and differentiating applications and to improve user experience.
    I found your question is about MessageTrace report:
    http://msdn.microsoft.com/EN-US/library/office/jj984335(v=office.15).aspx
    The Exchange Server Development is a better place for Office365/Exchange development questions. I’ve moved it there for you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to specify HTTPS endpoint for web role?

    We're using CloudService of Azure, and within there are two web roles (A and B), we hope both use HTTPS protocol.
    For web role A, we specify the endpoint like this:
    <Endpoints>
    <InputEndpoint name="WebPortalEndPoint" protocol="https" port="443" certificate="WebPortalCertificate" />
    </Endpoints>
    For web role B, we do like:
    <Endpoints>
    <InputEndpoint name="WebApiEndPoint" protocol="https" port="444" certificate="WebApiCertificate" />
    </Endpoints>
    So after deploying to cloud, we can use this url to visit web role A: https://name.cloudapp.net, but for web role B, we couldn't visit like: https://name.cloudapp.net:444.
    Do we miss something? What ports can we use if we want to add more web role to cloud service which use HTTPS?

    Hi,
    How did your set the endpoints on your azure projects? I set my test project like this:
    WebRole1 Endpoints:
    WebRole2 EndPoints:
    I can use the 443 to access the webrole1, and use 8081 to access webrole2. If your setting didn't work, I suggest you could reset and re-deployed again.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to specify dataschema name for oracle data source?

    hi all,
    I've a following problem:
    we have specified 2 Oracle dataschemas into a one Oracle SID, choosing of dataschema depends on user login name. So, if I use SQL/Plus then I successful connect with proeprietary database schema, and when I specify this user in "data-sources.xml" for datasource definition, however connection estabished with a default dataschema.
    And so question: how can I choose proeprietary database schema defined in one Oracle SID? There is any settings for this purpose in data-sources.xml?
    thanx in advance,
    Val.

    sorry, it works! was my error.

  • How to specify relative path for file name in java class

    I have a directory structure like this.
    C:\Aurora\com\optemys\aurora\validation
    I have a class Test.java under the validation folder.
    I have various files under the same folder i.e validation.
    If I want to access the file "test.properties" in Test.java, how can I just specify "test.properties" & not "C:\Aurora\com\optemys\aurora\validation\test.properties".
    I dont want to hardcode any file path into the class. How can I specify the relative file name into the class.
    Thanks In Advance
    Sachin

    switch the name in Test.properties and use
    this.getClass().getResourceAsStream(fileName)

  • How to specify relative path for background image  in xsl

    Hi,
    I am generating a PDF from Apcahe FOP. I have an xsl for that, in the xsl fo:block I am displaying a background image. When the image path is absolute like..C:\image\logo.png it works fine. But I want to have the image in my WebContent\images folder and my xsl file is in WebContent\xsls folder. So when I try giving the relative path as ../images/logo.png, the image is not displayed.
    Can anyone tell how to do this???
    Thanks,
    Sanjeev.

    I have a fo:block like this :
    <fo:block border-style="solid" border-width="0.2pt" text-align="left"
                             background-image="url('http://localhost:8080/Project/images/table_header_center.png')"
                             font-size="8pt" font-weight="bold" color="white" padding-top="1pt"
                             padding-bottom="1pt">
                             <xsl:value-of select="tr/td/span" />
                        </fo:block>In the above code you can see that the the background-image="url('http://localhost:8080/Project/images/table_header_center.png')"
    has been given as absolute. The images folder is in my WebContent directory. I want this path to be relative to the context of my application , something like background-image="url('../images/table_header_center.png')".
    Thanks.
    sanjeev.

  • How to specify the vendor for supply plant in stock transfer oder process

    Hi experts,
    In the sceniro of intercompany STO, I want to know how to set up the link between supply plant and the vendor ?
    Thank you.

    Hi
    I think you are talking about Inter Company STO...if yes,
    Follow the below steps to to make STO between two plants belongs to  different company company codes.It is also called as Inter Company STO.....
    *1)Create one Customer Master in XD01 with respect to Supplying Plant Sales Area and assign this Customer no with Receiving Plant in OLME->PO-> set up STO->Define shipping data for plant and for the supplying Plant assign the above sales area.( Make sure,In Customer Master,sales Area Tab: you are maintaining shipping condition)*
    *2) For Receiving Plant Pur. Org and Co.Code Combination create Vendor master in XK01 and in this vendor master assign the Supplying plant in Pur.Org.Data screen->Extras--> Add.Pur.data
    3) OLME->PO-> Set up STO------>For your supplying plant assign document type NB, Delivery type NLCC and Checking Rule RP
    4)then For your supplying Plant and receiving Plant assign Document type NB
    5)Make sure you are maintaining Sales View for the material at supplying Plant and in Sales /Gen plant Data view maintain Availability check, Loading group and Transportation group.
    6) In SPRo-->Logistics execution> Shipping->Basic shipping functions->Shipping point Determination>assign shipping points-> For your Loading group,Shipping Condition and Supplying plant combination,Assign shipping point
    these are the configuration settings you have to do in background.
    Then Create STO from Receing Plant in ME21N with document type NB.
    Based on that STO, Create Delivery in VL10B from supplying Plant
    Do PGI in VL02N from Supplying plant
    Do GR in MIGO at Receiving Plant keeping Outbound delivery as a ref. document.
    Now your STO bet. two plants belongs to diff. Co.Codes will be completed.
    Reward if useful
    Regards
    S.baskaran
    Edited by: baskaran srinivasan on Feb 28, 2008 9:53 AM
    Edited by: baskaran srinivasan on Feb 28, 2008 9:54 AM

  • How to specify the target for a command button action?

    Hi can anybody explain how to achieve the target feature, i mean i need to display the result of the action in a different window after clicking on the button. Is there anyway to achieve this?
    I want to click the button using Javascript.(using button.click event).
    Thanks in advance

    Thanks for the reply Stas, but it is not the solution I wanted. I want display the result of that action into a different frame of the window. As we have target attribute of the anchor tag in HTML. The target attribute of the h:CommandLink is not working. I tried that.
    Anyway thanks again.

  • How to specify default folder for Open... command

    In apps (say Illustrator, for example) when I do an Open... command, I'm always dumped into the root folder of the hard drive. Is there a way to specify "last folder used" as the default?
    I seem to remember a way to set this as a default, but I could be wrong. Many thanks!

    not without manual refactoring, and changing the composite's component impls

Maybe you are looking for

  • HOW to define the default language in the portal

    Normally the portal take the language of the internet explorer for user. I want to define a default language for all portal users in our portal, so that every user get the same default language. Can anyone tell me how to do this? We are on EP6 SP2. T

  • Regarding recieving Plant in print preview of PO

    Dear All, We need to maintain address of delivery plant as default in print preview of PO for all vendors. Please guide how to customize. Regards, Vikas

  • Message-based Alerting

    Hello! I have configured Message-based Alerting for a File -> IDoc scenario and I receive the alerts in the RWB Inbox as well as by mail. The alerts usually contain Alert-ID, Message-ID, Rule Name, Error-Code, Error-Category, Sender Interface, Sender

  • How to edit Digibeta on FCP?

    I have recently shot a film on *Super 16* & transferred it to digibeta to avoid quality loss. I just would like to know *how to get it into final cut, make it ready to edit? & output it back to digibeta?* With normal DV, i just convert it to a quickt

  • New iPad Mini 3

    Hello friends I just purchased my second iPad today. The first one which I gave to my husband is the iPad 2 and the one that I just got is the sexy gold iPad mini 3 Retina Display, which is the perfect partner in color with my iPhone 5S. So that's co