Assigning App Builder and Application roles using Account Administration Tool

If you have a DPS Enterprise or Professional Account and need to assign App Builder or Application role to an id to in case you need to create a new id with these roles, refer to the following documentation:
Assigning App Builder and Application roles in your DPS Professional or Enterprise accounts

gnm,
Please refer to KnowledgeBase 2IDDCHB9: Using Remote Panels with a LabVIEW Applications (EXE) for the information you are looking for.
Randy Hoskin
Applications Engineer
National Instruments
http://www.ni.com/ask

Similar Messages

  • Error using App Builder and Application Loader

    Hello,
    we created many App's with the App Builder before and after the release of v27 we tried to update a couple of App's. So we get into the App Builder, changed the version from v26 to v27 (didn't changed anything else!!!) and rebuild the App. Now we want to use the Application Loader to upload the App to iTunes Connect, but everytime we receive this message:
    "The binary being analyzed must be an executable: /var/folders/9x/.../..._v27_distribution-viewer.zip/viewer.app/viewer"
    We rebuild the app several times, updated the App Builder but nothing works. Does anyone has an idea?
    Regards
    Sven

    Was the app updated from previous version to v27 or was created as a brand new v27 app?
    Is this same error happening for any other apps you are trying to submit?
    What is the version of application loader you are using to upload the distribution-viewer.zip?
    The latest version of application loader should be on is 2.8. If you are not, then upgrade to the latest version and try again. You can download the latest version from https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa

  • I downloaded pages from the app store and I can use it on my Mac login but it doesn't show up when my wife logs in to her account? Were using the same computer, just different logins.

    I downloaded pages from the app store and I can use it on my Mac login but it doesn't show up when my wife logs in to her account? Were using the same computer, just different logins.

    No. You need to buy it for your Apple ID and for the other. You will have problems with updates

  • The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

  • Best practices on enterprise and application roles in OIM and OAM 11g?

    Hi, all,
    I wonder if any of you can give me some advice on role design for OIM and OAM 11g. I'd like to have both enterprise roles, such as Accountant II, and application roles, such as App1_User, App1_Admin, etc. Ideally, the enterprise role would automatically give the user the appropriate application roles, but I can't figure out how to do that. We tried using OIM 11g's inheritance, but when the application role is inherited, OAM doesn't see it in OID/OVD and therefore doesn't think the user has the correct authorization to access the application. I thought about using role membership rules, but those seem to only allow you to use user attributes to control membership, which doesn't help at all in my situation.
    How is this situation best handled? Any advice much appreciated!
    Ariel Anderson
    Senior Business Analyst
    Zirous, Inc.

    Hi,
    I am assuming in clustered environment you are having two instances running.
    It must be an issue with a single server,,because the problem is intermittent.
    To see which server is causing problem....just perform the following steps:
    1) Stop server1 and keep running server2..and fire new registration request...
    2) stop server 2..and keep running server1.....and fire new registration request.
    Using above, atleast you can see which server is causing the problem...
    Regards,
    J
    Edited by: J_IDM on Mar 21, 2011 10:52 PM

  • OBIEE 11g issue - same user assigned to the multiple application role

    Hi All,
    We are facing an issue when assigning a user to the multiple application role and applying the data level filter on the different column of the same table.
    For example, we have a table Department with three columns Department No, Department name, Department location.
    Application Role A1 and A2 are created.
    Data Level security Applied on the application role A1: Department Name='Finance'
    Data Level Security Applied on the application role A2: Department location='US'
    The user "User1" is created in LDAP and is assigned to both the Application roles A1 and A2.
    When logged in with "User1", none of the filters of Role A1 or A2 is applied in the report. If this user is assigned to only one role, either A1 or A2, then the filter is applied. It seems the filter will not be applied if a user belongs to multiple roles with data filter applied on the same table across these roles.
    Please reply if anyone has faced similar issue.

    Hi All,
    Regarding the above issue to update the analysis we came up that the user if assigned to the multiple group with the data filter applied on the same column of the table is getting an *"OR"* join.
    We had a requirement to get an "AND" in the query condition. Please let us know if any one faced the issue and the resolution of the same.
    Regards,
    Jyotshna

  • Segregation of Cash application and application of on account AR payments

    Hi Friends,
    We have a requirement to segregate cash application to customer accounts and application of on account payments from customer account. The requirement is coming from Internal audit. They want a process where a group of users can apply payments to the customers , they can apply payment directly to invloice if they know it. But if they don't know the same, they can post on account to the customer. Another group of users (collectors) can call up customer and find for which invoice, the payment needs to be applied and can clear on account payment to an invoice. In FI module, application of payment to customer can be done by using TR code F-28 and account clearing can be done using Tr code F-04/F-32. These two functions can be segregated by restricting access of F-28 to only cash application group. But if the collector wants, he/she can post to cash account using Tr code F-32/F-04 also. SAP does allow to enter any GL Account in clearing Tr codes also so it does not seem possible to segregate these two functions just by restricting access to Tr code F-28. Restricting access of collectors to all GL Accounts may not work as they may have to post exchange rate gain/loss which are GL Accounts.  Has anyone dealt with such situation and how was it solved? Any suggestion would be helpful.
    Thanks and regards,
    Pinky

    Hi Friends,
    We have a requirement to segregate cash application to customer accounts and application of on account payments from customer account. The requirement is coming from Internal audit. They want a process where a group of users can apply payments to the customers , they can apply payment directly to invloice if they know it. But if they don't know the same, they can post on account to the customer. Another group of users (collectors) can call up customer and find for which invoice, the payment needs to be applied and can clear on account payment to an invoice. In FI module, application of payment to customer can be done by using TR code F-28 and account clearing can be done using Tr code F-04/F-32. These two functions can be segregated by restricting access of F-28 to only cash application group. But if the collector wants, he/she can post to cash account using Tr code F-32/F-04 also. SAP does allow to enter any GL Account in clearing Tr codes also so it does not seem possible to segregate these two functions just by restricting access to Tr code F-28. Restricting access of collectors to all GL Accounts may not work as they may have to post exchange rate gain/loss which are GL Accounts.  Has anyone dealt with such situation and how was it solved? Any suggestion would be helpful.
    Thanks and regards,
    Pinky

  • How to interface a tuxedo app with another application that uses tcp/ip socket  messaging

    How would you interface a tuxedo app with another application that
    uses tcp/ip socket messaging? I have a vendor product that offers
    a tcp/ip message interface, and would like to know how best to
    integrate it into a tuxedo application. I could write a C application
    that listens and accepts incoming request from the vendors application,
    and then make a tuxedo client call to a service. But this doesn't
    allow me to control the listen thread through tuxedo. The C application
    would have to be started seperately and would not take advantage
    of the tuxedo restart facilities etc of a tuxedo service.

    You can make an empty server only with tpsvrinit that starts your client
    listeners and a tpsrvdone that stops them. Be carefull with sharing ipcs
    between processes, or your clients may get puzzled!!!
    Another choice can be builting a custom WSL/WSH but I haven't done
    this yet and I don't know exactly the troubles related with making them.
    R.G.
    Travis Ward wrote:
    How would you interface a tuxedo app with another application that
    uses tcp/ip socket messaging? I have a vendor product that offers
    a tcp/ip message interface, and would like to know how best to
    integrate it into a tuxedo application. I could write a C application
    that listens and accepts incoming request from the vendors application,
    and then make a tuxedo client call to a service. But this doesn't
    allow me to control the listen thread through tuxedo. The C application
    would have to be started seperately and would not take advantage
    of the tuxedo restart facilities etc of a tuxedo service.

  • How can I use in app purchase without credit card using account balance

    How can I use in app purchase without credit card using account balance

    Hi Kaijinfromtx,
    Thanks for visiting Apple Support Communities.
    When you make an In App Purchase, the iTunes Store should use any gift balance or account credit first. You may still be asked to verify the payment information on your account before completing the purchase.
    You can find more information about iTunes Store billing in these articles:
    iTunes Store: How iTunes Store purchases are billed
    http://support.apple.com/kb/HT5582
    iTunes Store: iTunes Gift balances
    http://support.apple.com/kb/ht5035
    Best,
    Jeremy

  • Hi i just had my imac hdd replaced and since then ive had nothing but problems...i cant find imovie iphoto or anything and i followed the steps mentioned on here go in app store and buy but my account wont be charged...but it did...can someone pls advise.

    Hi i just had my imac hdd replaced and since then ive had nothing but problems...i cant find imovie iphoto or anything and i followed the steps mentioned on here go in app store and buy but my account wont be charged...but it did...can someone pls advise.

    Hi i've done everything that i was advised on...and also another problem i tried to restore my mac and it keeps sayin disk erase failed couldnt unmount disk!...i'm so angry i swear....someone somewhere dont know what they doing....

  • Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Photoshop CS6 crashes all the time and especially when using the type tool... please help!

    Since I did not have this problem with CS5 or CS4, I can only assume something is not right with Photoshop CS6... below is my video card info:
    ATI Radeon HD 4850:
      Chipset Model:          ATI Radeon HD 4850
      Type:          GPU
      Bus:          PCIe
      PCIe Lane Width:          x16
      VRAM (Total):          512 MB
      Vendor:          ATI (0x1002)
      Device ID:          0x944a
      Revision ID:          0x0000
      ROM Revision:          113-B9110C-425
      EFI Driver Version:          01.00.383
      Displays:
    iMac:
      Resolution:          2560 x 1440
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Built-In:          Yes
      Connection Type:          DisplayPort
    Cinema HD:
      Resolution:          1920 x 1200
      Pixel Depth:          32-Bit Color (ARGB8888)
      Display Serial Number:          2A80273WXMN
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported

  • [BUG]PS CC Layer Group add vector mask and disable it,use path selection tool click,always crash!!!

    [Bug] Photoshop CC,Layer Group add vector mask and disable it, use path selection tool click canvas, always crash!!!  Please help me!
    The sample psd file(158KB):
    http://doc.aoyea.com/ps_cc_bug.psd
    My Computer configuration:
    SONY VAIO CA100 Notebook、Intel Core I5 2410 CPU、16GB RAM、AMD Radeon 6600M(1G RAM)、Windows7 x64 SP1(clean)、Scratch disk free space is 100GB
    email: [email protected]

    Hi,
    As far as i know that's a bug that will hopefully be fixed in the next update to photoshop cc.

  • Digital Publishing Suite Help | Account Administration tool

    This question was posted in response to the following article: http://helpx.adobe.com/digital-publishing-suite/help/account-administration-tool.html

    Hi guys,
    For some reason there is no "Free" option for the Article Access in the folio as per documentation - please see below, only "Metered" and "Protected". What could be the problem?
    TIA,
    Gennady
    Select the "Enable Article Preview" option to let users preview any retail folio that includes articles marked as "Free" (use the Folio Producer Editor to mark articles as Free).

  • HT204053 how can i use iTune and Apple apps to doenload applications without using credit card or gift cards?

    Hi Team,
    I have brought new iPhone, and was trying to install Skype & other applications. while using itune its asking for review, and then in registration page asking for
    "Credit card' details..
    help me to know the way without credit cards or gift cards.

    If you only want the free apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is  critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID. 
    You will of course not be able to get anything other than the free apps without entering in some sort of payment method (credit card, prepaid iTunes card, gift certificate, etc.)
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Creating app for Android/Kindle with App builder and Single Edition (No professional or Enterprise)

    Hi there,
    I know there is no official support for Android in Single Edition, but, once you have installed Indesing CC and App Builder in a mac, and you create app from your Folio menu, is it possible to create then an Android/Kindle apk app for publishing by your own?
    Has anybody published sucessfully in this way?
    Other point, is that I suposse that you need a Professional or Enterprise licence to create an android app from the Web-enablet App Builder. Cause I can't find the way the make my single account to join the role to this function (And app builder website website just tells me I have to do this, as if I were able to do it with my license...).
    By the way, I think Adobe should explain more clearly this points. There is too much documentation, but difficult to find this answers... And a lot of people with the same troubles...
    Thanks!

    Thanks Tomek!
    So, can you confirm if you join the Professional edition (just for a month) if you are able to use both options App Builder/Web-Based App Builder, to create the app in a way that you don't need to be suscribed more time to Professional Edition to be downloaded by the users in Google Play/Kindle Store, and it should work for Applestore (iphone apps) too. I mean, once again, no using Multi-issue and Renditions, cause in this case I know they are hosted by Adobe and you need the subscription to be downloaded.
    I think there are discussions here about this topic, but it's not exactly clear what I'm asking. So, I still don't know if I should buy the Professional Edition or go to another supplier as you said.
    I hope that Adobe improve these functions! There should be native support for these platforms, cause at the end you only can publish to the applestore with the Single Edition and everbody knows the "too booky problem" with the apps. And we should have support to publish to ibookstore because of that too, without third party solutions. 

Maybe you are looking for

  • An error occurred while creating a subprocess in the processing server.

    Hi, I have developed a Crystal Report using CR 2008 with SAP BW as the datasource. The report is executing fine in CR 2008, but when saved to the BOE, in Infoview it is throwing the following error: An error occurred while creating a subprocess in th

  • Install fms 4 in Windows 7 and access from a webserver in different domain

    Hi, I have installed fms 4 in windows 7 in my computer, but i cant get it work with a flex application that i have in a server. I added the port in my router's settings 2 fms all(udp/tcp) 19350 65535 xxx.xxx.xxx.xxx 19350 65535 3 fms all(udp/tcp) 193

  • T510 Random Stuck Pixels?

    I received my T510 FHD Thinkpad about a month ago and over the last few days it started to display random stuck pixels (always on - white).  I say random because they eventually go away when I open and close windows or reboot the computer.  Mysteriou

  • Acrobat Pro won't open a PDF file.

    I know this isn't a Mac question but I've been to Adobe and they are no help. I have PDF files that were created by Acrobat Pro that will not open when I click on the file icon yet, if I open the Acrobat program it will open the file. This is annoyin

  • SSD startup pauses (X220/Win7)

    After i installed the SSD in my X220, i ofcourse pay much attention to how fast the boot is.  Normally it is about 25 seconds - BUT .... sometimes it is much slower. There are 2 pauses - the first is right after the 'Loading Windows' logo with the fl