Block application until a task has completed

Hi
I have something in mind. I am currently working on a lot of data, of course this takes some time and the whole thing runs in a sequence.
Now I'd like the following:
* I'd like a window popping up at the beginning, telling the user to be so kind and wait until the task has finished.
* In the background, the task should be running, but the window should still be displayed
* During this time, no elements of my main front panel should be operateable
* When the task is done, it should close the window
Is this possible ?

Hi
a simple solution is just to use a text message ;where you can change message as
main application progresses. The window is still displayed!!
with regard to point 3
see following thread
 http://forums.ni.com/ni/board/message?board.id=170&message.id=89058&requireLogin=False
Point 4 adjust VI's window properties  so VI closes after use.
chow
xseadog

Similar Messages

  • Block application until the modification of a File

    Hi, I have an application that saves and reads a Hashtable from disk. The code is the next one and it runs fine. However I want to allow two applications reading and saving in the same file (both in java). I want both applications to share the same data. My idea was that before to save the hastable the application reads the hastable from the file and make a new hastable with the information of both. Then the application should save the new hashtable (i know that for a while both application are not sincronized...but it is not important ). The problem is when one application wants to save its hashtable (that has been modified) while the other application is doing the same. I'd like that one application could detect that other application is working the in the file and block itself until the other finishes.
    Any idea?
    Thanks in advance
    Marc
    Curent code:
    private Hashtable load(File fileDisk)throws Exception{
    BufferedInputStream is;
    Hashtable hs;
    if (fileDisk.length()!=0){
    // the file is not empty
    is = new BufferedInputStream(new FileInputStream(fileDisk));
    ObjectInputStream ois = new ObjectInputStream(is);
    hs = (Hashtable) ois.readObject();
    ois.close();
    else{
    hs = new Hashtable();
    return hs;

    Use Serialization and save yourself a fortune of time.
    RE: java.io.Serializable.

  • Progess bar is not showing until the task is completed

    Hi,
    when some button press, in button action i am using "progessBar.setVisible(true)" as fist statement then i am processing some XML files.
    according to above scenario the progress Bar need to visible first then processing XML files later
    but after processing the XML files the progress bar is showing.
    i want to progressbar visible fist then xml files process start
    this is the sample code
    private void addComp(java.awt.event.ActionEvent evt) ------------------------------------------------>here button action start
        progressBar.setVisible(true);----------------------------------------------------------------------->here i am make progressBar visible
        progressBar.setVisible(true);
        buttoncount++;
        if(buttoncount>=2)
            jComboBox1.removeAllItems();
            jComboBox2.removeAllItems();
        jComboBox1.addItem("         ---select---");
        jComboBox2.addItem("         ---select---");
       System.out.println("enter into action");
            try {
                File dir = new File("C:\\Xmlfiles");----------------------------------------->from here XML processing starts
                System.out.println("time in nano :"+System.nanoTime());
                filesList = dir.list();
                java.lang.Process p = null;
                Runtime rt = Runtime.getRuntime();
                for (int i = 0; i < filesList.length; i++)
                    String fname = filesList;
    String[] s = fname.split("\\.");
    String s1 = s[0];
    if (fname.endsWith(".xml"))
    String fname1 = dir.toString() + "\\" + fname;
    String command =
    "cmd /c pari_api_client.bat -s localhost -u admin -p Pari0426 -if " +
    fname1 +" -of C:\\Responses\\" + s1 + "xmlResp.xml";
    String[] st=null;
    File wdir=new File("C:\\apiDist\\bin");
    p = rt.exec(command, st, wdir);
    requests++;
    Thread.sleep(1500);
    status=true;
    File dir1 = new File("C:\\Responses");
    String[] filesList = dir1.list();
    int responses=filesList.length;
    System.out.println("Lenght :"+responses);
    System.out.println("Faild Xml files :");
    int unSuccessfulXmls=0;
    for(int i=0;i<filesList.length;i++)
    if(filesList[i].endsWith(".xml"))
    String fname=dir1.toString()+"\\"+filesList[i];
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder=docBuilderFactory.newDocumentBuilder();
    Document doc=docBuilder.parse(fname);
    org.w3c.dom.Element root=doc.getDocumentElement();
    org.w3c.dom.Element elm=XMLUtil.getElementByTagName(root,"ErrorList");
    org.w3c.dom.Element warnElm=XMLUtil.getElementByTagName(root,"WarnList");
    String fname1=filesList[i];
    if(elm!=null||warnElm!=null)
    System.out.println(fname1);
    jComboBox2.addItem(fname1);
    else
    System.out.println(fname1);
    jComboBox1.addItem(fname1);
    } catch (Exception e) {
    e.printStackTrace();
    System.out.println("file processing over");
    after processing the XML files the progressBar is visible
    what is the problem?? where i am missing
    please help meeee
    Thanks in advance,
    Nagaraju.
    Edited by: uppala on Dec 23, 2009 11:00 AM
    Edited by: uppala on Dec 23, 2009 11:31 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Your code is execting on the Event Dispatch Thread (EDT) which means the GUI can't repaint itself until the long running task finishes.
    Read the JProgressBar API and follow the link to the Swing tutorial on "How to Use Progress Bars" for a working example. While in the tutorial you should also read the section on "Concurrency" which explains about the EDT.

  • Verify that a task has an attachment before complete it

    Hello,
    I want to verify (java code) that a task has an attachment. The example is that a user can't complete the task until he has uploaded a file to it.
    I'm searching for java code or something about BPM APIs but I still can't find information.
    Thanks & Regards
    SU

    Hi,
    BPM API would be available starting 7.3 and currently the attachments functionality does not provide a way to extract/ceck the attachments in any way. Also the attachments are lost once the process is completed.
    You may go for the custom (WDP) development for uploading and downloading files in a task.
    Cheers,
    Arafat

  • Group Policy refresh after a task sequence has completed

    Hi
    I would like to force a Group policy refresh after my OSD task sequence has completed.  At the moment, my TS completes, I get the Deployment Complete window and I click on Start Windows.  Windows starts up but my Computer based Group Policies have
    not applied so I need to restart the machine immediately.
    My question is, how can I refresh group policy but still retain the Deployment Complete window ?  I have tried using the
    SMSTSPostAction Task Sequence variable to set a gpupdate /force
    to run after the TS completes but it just hangs.  I set it to gpupdate /force /wait:0
    and this seems to run and I get my Deployment Complete window, but my Group Policy still isn't applying.  I have tried setting the
    SMSTSPostAction Task Sequence variable to shutdown /r
    which reboots the machine, but then i don't get the Deployment Complete window at the end of the build.
    Any other ideas ?
    Cheers
    G

    Hi
    AFAIK On Windows Vista and later Operating Systems, Group Policies are processed after the Task Sequence is finished. Including restarts during the Task Sequence will not help and  a manual reboot is required after the TS is completed.
    As a workaround you can write a script to run Gpupdate  and reboot the machine. Deploy this script as a Mandatory Application, which will run as soon as the OSD finishes. 
    Alternatively can try using a Run Once registry for gpupdate /force . This will ensure that the Group Policies are updated when the user logs in for the first time.
    Regards, Manohar Pusala

  • I just upgraded to iOS 7 and I realized that the "Completed" tasks folder in the "Reminders" application was erased. I had important information there. How can I recover my completed tasks and the dates the tasks were completed?.

    I just upgraded to iOS 7 and I realized that the "Completed" tasks folder in the "Reminders" application was erased. I had important information there. How can I recover my completed tasks and the dates the tasks were completed?.

    Restore from your iTune backup.

  • [svn:osmf:] 10991: Fix bug FM-119, where the playhead time doesn' t get updated until after the seek has completed.

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

    Revision: 10991
    Author:   [email protected]
    Date:     2009-10-17 22:52:28 -0700 (Sat, 17 Oct 2009)
    Log Message:
    Fix bug FM-119, where the playhead time doesn't get updated until after the seek has completed.  The bug is actually in Flash Player (FP-1705), and the workaround is to wait until NetStream.time gets updated before dispatching the seek completion event.  This changelist also updates the unit tests and NetMocker to verify the fix.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-119
        http://bugs.adobe.com/jira/browse/FP-1705
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as

  • Command to shut computer down when an application task is complete.

    Hi, I'm pretty new to Automator. I was wondering if there was a way I could set it up so my iMac either goes to sleep or shuts down once a task, such as exporting a video with Compressor or Final Cut Pro, has completed.
    thanks,
    Kyle

    See '''hang-at-exit''' in this support article. <br />
    https://support.mozilla.com/en-US/kb/Firefox%20hangs

  • DNS is waiting for AD to signal the initial replication has completed

    Hello,
    First off, thank you for your help in advanced. Any help you can offer would be appreciated, and let me know if there's more information you need
    me to provide, or utilities to run.
    I have just joined a Server 2012 R2 DC to my Server 2008 R2 domain.  Topology is it only had one DC previously, the 2008 R2, running AD/DNS/DHCP. 
    I ran the forest prep & domain prep on the 2008 R2 domain controller, then ran a dcpromo on the 2012 R2.  From there, I migrated the FSMO roles over to the 2012 R2 server using ntdsutil.exe.  The ultimate goal is to retire the 2008 R2 DC and
    bring on line a 2nd 2012 R2 DC for this domain.
    My Issues
    Windows 7 client      PC's do not always resolve/pass traffic to the Server 2012 R2 server,      sometimes I need to ping
    the server by IP before it will resolve, other      times if I just repeatedly double click on the shared folder mapped to the      Server 2012 R2 DC it will work eventually.  This is      intermittent/random,
    and not always repeatable with any specific      procedures. Sometimes the user will be working, then all of the sudden      they can't resolve DNS to the internet, nor internally.
    I am getting the following errors in the event log on my 2012 R2 DC
    Log      Name:      DNS Server
         Source:             Microsoft-Windows-DNS-Server-Service
         Date:          3/16/2014      8:02:34 PM
         Event ID:      4013
         Task Category: None
         Level:         Warning
         Keywords:      Classic
         User:          N/A
         Computer:      HSSserver.carman.local
         Description:
         The DNS server is waiting for Active Directory Domain Services (AD DS) to      signal that the initial synchronization of the directory has been      completed. The DNS server service cannot start
    until the initial      synchronization is complete because critical DNS data might not yet be      replicated onto this domain controller. If events in the AD DS event log      indicate that there
    is a problem with DNS name resolution, consider adding      the IP address of another DNS server for this domain to the DNS server      list in the Internet Protocol properties of this computer. This event will     
    be logged every two minutes until AD DS has signaled that the initial      synchronization has successfully completed.
    Log      Name:      Directory Service
         Source:             Microsoft-Windows-ActiveDirectory_DomainService
         Date:          3/16/2014      8:56:17 PM
         Event ID:      2092
         Task Category: Replication
         Level:         Warning
         Keywords:      Classic
         User:          ANONYMOUS      LOGON
         Computer:      HSSserver.carman.local
         Description:
    This server is the owner of the following FSMO role, but does not consider it valid. For the partition which contains the FSMO, this server has
    not replicated successfully with any of its partners since this server has been restarted. Replication errors are preventing validation of this role.
    Operations which require contacting a FSMO operation master will fail until this condition is corrected.
    FSMO Role: CN=Partitions,CN=Configuration,DC=carman,DC=local
    User Action:
    1. Initial synchronization is the first early replications done by a system as it is starting. A failure to initially synchronize may explain why a FSMO role cannot be validated. This process is explained in KB article 305476.
    2. This server has one or more replication partners, and replication is failing for all of these partners. Use the command repadmin /showrepl to display the replication errors.  Correct the error in question. For example there maybe problems with IP connectivity,
    DNS name resolution, or security authentication that are preventing successful replication.
    3. In the rare event that all replication partners are expected to be offline (for example, because of maintenance or disaster recovery), you can force the role to be validated. This can be done by using NTDSUTIL.EXE to seize the role to the same server. This
    may be done using the steps provided in KB articles 255504 and 324801 on.
    The following operations may be impacted:
    Schema: You will no longer be able to modify the schema for this forest.
    Domain Naming: You will no longer be able to add or remove domains from this forest.
    PDC: You will no longer be able to perform primary domain controller operations, such as Group Policy updates and password resets for non-Active Directory Domain Services accounts.
    RID: You will not be able to allocation new security identifiers for new user accounts, computer accounts or security groups.
    Infrastructure: Cross-domain name references, such as universal group memberships, will not be updated properly if their target object is moved or renamed.
    Log      Name:      Directory Service
         Source:             Microsoft-Windows-ActiveDirectory_DomainService
         Date:          3/16/2014      8:56:17 PM
         Event ID:      2092
         Task Category: Replication
         Level:         Warning
         Keywords:      Classic
         User:          ANONYMOUS LOGON
         Computer:      HSSserver.carman.local
         Description:
    This server is the owner of the following FSMO role, but does not consider it valid. For the partition which contains the FSMO, this server has
    not replicated successfully with any of its partners since this server has been restarted. Replication errors are preventing validation of this role.
    Operations which require contacting a FSMO operation master will fail until this condition is corrected.
    FSMO Role: CN=Schema,CN=Configuration,DC=carman,DC=local
    User Action:
    1. Initial synchronization is the first early replications done by a system as it is starting. A failure to initially synchronize may explain why a FSMO role cannot be validated. This process is explained in KB article 305476.
    2. This server has one or more replication partners, and replication is failing for all of these partners. Use the command repadmin /showrepl to display the replication errors.  Correct the error in question. For example there maybe problems with IP connectivity,
    DNS name resolution, or security authentication that are preventing successful replication.
    3. In the rare event that all replication partners are expected to be offline (for example, because of maintenance or disaster recovery), you can force the role to be validated. This can be done by using NTDSUTIL.EXE to seize the role to the same server. This
    may be done using the steps provided in KB articles 255504 and 324801 on  
    The following operations may be impacted:
    Schema: You will no longer be able to modify the schema for this forest.
    Domain Naming: You will no longer be able to add or remove domains from this forest.
    PDC: You will no longer be able to perform primary domain controller operations, such as Group Policy updates and password resets for non-Active Directory Domain Services accounts.
    RID: You will not be able to allocation new security identifiers for new user accounts, computer accounts or security groups.
    Infrastructure: Cross-domain name references, such as universal group memberships, will not be updated properly if their target object is moved or renamed.
    Log      Name:      DFS Replication
         Source:        DFSR
         Date:          3/16/2014      11:21:43 PM
         Event ID:      5014
         Task Category: None
         Level:         Warning
         Keywords:      Classic
         User:          N/A
         Computer:      HSSserver.carman.local
         Description:
         The DFS Replication service is stopping communication with partner      CARMANSERVER for replication group Domain System Volume due to an error.      The service will retry the connection periodically.
         Additional Information:
         Error: 1726 (The remote procedure call failed.)
         Connection ID: 020D5B10-4876-4888-9214-45E3D8B3206D
         Replication Group ID: 8A8ADB84-CB25-495E-8C28-AE9FD1761E85
    From the Server 2008 R2 DC, I get the following errors/warnings in my event log:
    Log      Name:      Directory Service
         Source:             Microsoft-Windows-ActiveDirectory_DomainService
         Date:          3/16/2014      8:02:45 PM
         Event ID:      2088
         Task Category: DS RPC Client
         Level:         Warning
         Keywords:      Classic
         User:          ANONYMOUS      LOGON
         Computer:      CARMANSERVER.carman.local
         Description:
         Active Directory Domain Services could not use DNS to resolve the IP      address of the source domain controller listed below. To maintain the      consistency of Security groups, group policy,
    users and computers and      their passwords, Active Directory Domain Services successfully replicated      using the NetBIOS or fully qualified computer name of the source domain      controller.
         Invalid DNS configuration may be affecting other essential operations on      member computers, domain controllers or application servers in this Active      Directory Domain Services forest,
    including logon authentication or access      to network resources.
         You should immediately resolve this DNS configuration error so that this      domain controller can resolve the IP address of the source domain      controller using DNS.
         Alternate server name:
          HSSserver.carman.local
         Failing DNS host name:
          25346b74-2fc2-4311-a54d-d500669d4026._msdcs.carman.local
         NOTE: By default, only up to 10 DNS failures are shown for any given 12      hour period, even if more than 10 failures occur.  To log all      individual failure events, set the following
    diagnostics registry value to      1:
         Registry Path:
         HKLM\System\CurrentControlSet\Services\NTDS\Diagnostics\22 DS RPC Client
         User Action:
          1) If the source domain controller is no longer functioning or its      operating system has been reinstalled with a different computer name or      NTDSDSA object GUID, remove the source
    domain controller's metadata with      ntdsutil.exe, using the steps outlined in MSKB article 216498.
          2) Confirm that the source domain controller is running Active      Directory Domain Services and is accessible on the network by typing      "net view <DC
    name>" or "ping <source DC name>".
          3) Verify that the source domain controller is using a valid DNS      server for DNS services, and that the source domain controller's host      record and CNAME record are correctly registered,
    using the DNS Enhanced      version of DCDIAG.EXE available on 
           dcdiag /test:dns
          4) Verify that this destination domain controller is using a valid      DNS server for DNS services, by running the DNS Enhanced version of      DCDIAG.EXE command on the console of the
    destination domain controller, as      follows:
           dcdiag /test:dns
          5) For further analysis of DNS error failures see KB 824449: 
         Additional Data
         Error value:
          11004 The requested name is valid, but no data of the requested type      was found.
    Log      Name:      DNS Server
         Source:        Microsoft-Windows-DNS-Server-Service
         Date:          3/16/2014      8:02:19 PM
         Event ID:      4013
         Task Category: None
         Level:         Warning
         Keywords:      Classic
         User:          N/A
         Computer:      CARMANSERVER.carman.local
         Description:
         The DNS server is waiting for Active Directory Domain Services (AD DS) to      signal that the initial synchronization of the directory has been      completed. The DNS server service cannot start
    until the initial      synchronization is complete because critical DNS data might not yet be replicated      onto this domain controller. If events in the AD DS event log indicate      that there
    is a problem with DNS name resolution, consider adding the IP      address of another DNS server for this domain to the DNS server list in      the Internet Protocol properties of this computer. This event will be     
    logged every two minutes until AD DS has signaled that the initial      synchronization has successfully completed.
         Log Name:      System
         Source:             Microsoft-Windows-DNS-Client
         Date:          3/16/2014      8:01:55 PM
         Event ID:      1014
         Task Category: None
         Level:         Warning
         Keywords:     
         User:          NETWORK      SERVICE
         Computer:      CARMANSERVER.carman.local
         Description:
         Name resolution for the name _ldap._tcp.dc._msdcs.carman.local timed out      after none of the configured DNS servers responded.
    Log      Name:      System
         Source:        NETLOGON
         Date:          3/16/2014      8:02:07 PM
         Event ID:      3096
         Task Category: None
         Level:         Warning
         Keywords:      Classic
         User:          N/A
         Computer:      CARMANSERVER.carman.local
         Description:
         The primary Domain Controller for this domain could not be located.
    Log      Name:      System
         Source:        Microsoft-Windows-WinRM
         Date:          3/16/2014      8:05:08 PM
         Event ID:      10154
         Task Category: None
         Level:         Warning
         Keywords:      Classic
         User:          N/A
         Computer:      CARMANSERVER.carman.local
         Description:
         The WinRM service failed to create the following SPNs:      WSMAN/CARMANSERVER.carman.local; WSMAN/CARMANSERVER.
     Additional Data
     The error received was 8344: %%8344.
     User Action
     The SPNs can be created by an administrator using setspn.exe utility.
    Log      Name:      System
         Source:             Microsoft-Windows-DistributedCOM
         Date:          3/16/2014      10:50:55 PM
         Event ID:      10009
         Task Category: None
         Level:         Error
         Keywords:      Classic
         User:          N/A
         Computer:      CARMANSERVER.carman.local
         Description:
         DCOM was unable to communicate with the computer 208.67.222.222 using any      of the configured protocols

    Sorry, the forum limited me to only 60000 characters per post, so here is some more detailed information:
    Here's some initial diags/info from my server 2012 DC:
    c:\windows\system32\dcdiag /test:DNS /v /e
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       * Verifying that the local machine HSSserver, is a Directory Server.
       Home Server = HSSserver
       * Connecting to directory service on server HSSserver.
       * Identified AD Forest.
       Collecting AD specific global data
       * Collecting site info.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=carman,DC=local,LDAP_SCOPE_SUBTREE,(objectCategory=ntDSSiteSettings),.......
       The previous call succeeded
       Iterating through the sites
       Looking at base site object: CN=NTDS Site Settings,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=carman,DC=local
       Getting ISTG and options for the site
       * Identifying all servers.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=carman,DC=local,LDAP_SCOPE_SUBTREE,(objectClass=ntDSDsa),.......
       The previous call succeeded....
       The previous call succeeded
       Iterating through the list of servers
       Getting information for the server CN=NTDS Settings,CN=CARMANSERVER,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=carman,DC=local
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=HSSSERVER,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=carman,DC=local
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       * Identifying all NC cross-refs.
       * Found 2 DC(s). Testing 2 of them.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\CARMANSERVER
          Starting test: Connectivity
             * Active Directory LDAP Services Check
             Determining IP4 connectivity
             * Active Directory RPC Services Check
             The clock difference between the home server HSSSERVER and target
             server CARMANSERVER is greater than one minute. This may cause
             Kerberos authentication failures. Please check that the time service
             is working properly. You may need to resynchonize the time between
             these servers.
             ......................... CARMANSERVER passed test Connectivity
       Testing server: Default-First-Site-Name\HSSSERVER
          Starting test: Connectivity
             * Active Directory LDAP Services Check
             Determining IP4 connectivity
             * Active Directory RPC Services Check
             ......................... HSSSERVER passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\CARMANSERVER
          Test omitted by user request: Advertising
          Test omitted by user request: CheckSecurityError
          Test omitted by user request: CutoffServers
          Test omitted by user request: FrsEvent
          Test omitted by user request: DFSREvent
          Test omitted by user request: SysVolCheck
          Test omitted by user request: KccEvent
          Test omitted by user request: KnowsOfRoleHolders
          Test omitted by user request: MachineAccount
          Test omitted by user request: NCSecDesc
          Test omitted by user request: NetLogons
          Test omitted by user request: ObjectsReplicated
          Test omitted by user request: OutboundSecureChannels
          Test omitted by user request: Replications
          Test omitted by user request: RidManager
          Test omitted by user request: Services
          Test omitted by user request: SystemLog
          Test omitted by user request: Topology
          Test omitted by user request: VerifyEnterpriseReferences
          Test omitted by user request: VerifyReferences
          Test omitted by user request: VerifyReplicas
       Testing server: Default-First-Site-Name\HSSSERVER
          Test omitted by user request: Advertising
          Test omitted by user request: CheckSecurityError
          Test omitted by user request: CutoffServers
          Test omitted by user request: FrsEvent
          Test omitted by user request: DFSREvent
          Test omitted by user request: SysVolCheck
          Test omitted by user request: KccEvent
          Test omitted by user request: KnowsOfRoleHolders
          Test omitted by user request: MachineAccount
          Test omitted by user request: NCSecDesc
          Test omitted by user request: NetLogons
          Test omitted by user request: ObjectsReplicated
          Test omitted by user request: OutboundSecureChannels
          Test omitted by user request: Replications
          Test omitted by user request: RidManager
          Test omitted by user request: Services
          Test omitted by user request: SystemLog
          Test omitted by user request: Topology
          Test omitted by user request: VerifyEnterpriseReferences
          Test omitted by user request: VerifyReferences
          Test omitted by user request: VerifyReplicas
             Starting test: DNS
                DNS Tests are running and not hung. Please wait a few minutes...
                   Starting test: DNS
                      See DNS test in enterprise tests section
    for results
                      ......................... HSSSERVER passed test DNS
             See DNS test in enterprise tests section for results
             ......................... CARMANSERVER passed test DNS
       Running partition tests on : ForestDnsZones
          Test omitted by user request: CheckSDRefDom
          Test omitted by user request: CrossRefValidation
       Running partition tests on : DomainDnsZones
          Test omitted by user request: CheckSDRefDom
          Test omitted by user request: CrossRefValidation
       Running partition tests on : Schema
          Test omitted by user request: CheckSDRefDom
          Test omitted by user request: CrossRefValidation
       Running partition tests on : Configuration
          Test omitted by user request: CheckSDRefDom
          Test omitted by user request: CrossRefValidation
       Running partition tests on : carman
          Test omitted by user request: CheckSDRefDom
          Test omitted by user request: CrossRefValidation
       Running enterprise tests on : carman.local
          Starting test: DNS
             Test results for domain controllers:
                DC: HSSserver.carman.local
                Domain: carman.local
                   TEST: Authentication (Auth)
                      Authentication test: Successfully completed
                   TEST: Basic (Basc)
                      The OS
                      Microsoft Windows Server 2012 R2 Standard
    (Service Pack level: 0.0)
                      is supported.
                      NETLOGON service is running
                      kdc service is running
                      DNSCACHE service is running
                      DNS service is running
                      DC is a DNS server
                      Network adapters information:
                      Adapter [00000010] Broadcom NetXtreme Gigabit
    Ethernet:
                         MAC address is F0:1F:AF:E1:D1:C4
                         IP Address is static
                         IP address: 192.168.17.7, fe80::35d3:8713:ce0a:3680
                         DNS servers:
                            192.168.17.7
    (HSSSERVER) [Valid]
                            192.168.17.5 (carmanserver.carman.local.) [Valid]
                      The A host record(s) for this DC was found
                      The SOA record for the Active Directory zone was found
                      The Active Directory zone on this DC/DNS server was found primary
                      Root zone on this DC/DNS server was not found
                   TEST: Forwarders/Root hints (Forw)
                      Recursion is enabled
                      Forwarders Information:
                         208.67.220.220 (<name unavailable>) [Valid]
                         208.67.222.222 (<name unavailable>) [Valid]
                   TEST: Delegations (Del)
                      Delegation information for the zone: carman.local.
                         Delegated domain name: _msdcs.carman.local.
                            DNS server: carmanserver.carman.local. IP:192.168.17.5 [Valid]
                   TEST: Dynamic update (Dyn)
                      Test record dcdiag-test-record added successfully in zone carman.local
                      Test record dcdiag-test-record deleted successfully in zone carman.local
                   TEST: Records registration (RReg)
                      Network Adapter
                      [00000010] Broadcom NetXtreme Gigabit Ethernet:
                         Matching CNAME record
    found at DNS server 192.168.17.7:
                         25346b74-2fc2-4311-a54d-d500669d4026._msdcs.carman.local
                         Matching A record found
    at DNS server 192.168.17.7:
                         HSSserver.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.e6c304e4-c161-4258-8d51-5a2f20a61c7a.domains._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kerberos._tcp.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kerberos._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kerberos._udp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kpasswd._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kerberos._tcp.Default-First-Site-Name._sites.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.Default-First-Site-Name._sites.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _kerberos._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.gc._msdcs.carman.local
                         Matching A record found
    at DNS server 192.168.17.7:
                         gc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _gc._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.Default-First-Site-Name._sites.gc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.7:
                         _ldap._tcp.pdc._msdcs.carman.local
                         Matching CNAME record
    found at DNS server 192.168.17.5:
                         25346b74-2fc2-4311-a54d-d500669d4026._msdcs.carman.local
                         Matching A record found
    at DNS server 192.168.17.5:
                         HSSserver.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.e6c304e4-c161-4258-8d51-5a2f20a61c7a.domains._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kerberos._tcp.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kerberos._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kerberos._udp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kpasswd._tcp.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kerberos._tcp.Default-First-Site-Name._sites.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.Default-First-Site-Name._sites.dc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _kerberos._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.gc._msdcs.carman.local
                         Matching A record found
    at DNS server 192.168.17.5:
                         gc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _gc._tcp.Default-First-Site-Name._sites.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.Default-First-Site-Name._sites.gc._msdcs.carman.local
                         Matching  SRV record
    found at DNS server 192.168.17.5:
                         _ldap._tcp.pdc._msdcs.carman.local
                DC: CARMANSERVER.carman.local
                Domain: carman.local
                   TEST: Authentication (Auth)
                      Authentication test: Successfully completed
                   TEST: Basic (Basc)
                      The OS
                      Microsoft Windows Server 2008 R2 Standard 
    (Service Pack level: 1.0)
                      is supported.
                      NETLOGON service is running
                      kdc service is running
                      DNSCACHE service is running
                      DNS service is running
                      DC is a DNS server
                      Network adapters information:
                      Adapter
                      [00000007] Broadcom BCM5716C NetXtreme II
    GigE (NDIS VBD Client):
                         MAC address is A4:BA:DB:12:D1:77
                         IP Address is static
                         IP address: 192.168.17.5
                         DNS servers:
                            127.0.0.1
    (carmanserver.carman.local.) [Valid]
                            192.168.17.7 (HSSSERVER) [Valid]
                      The A host record(s) for this DC was found
                      The SOA record for the Active Directory zone was found
                      The Active Directory zone on this DC/DNS server was found primary
                      Root zone on this DC/DNS server was not found
                   TEST: Forwarders/Root hints (Forw)
                      Recursion is enabled
                      Forwarders Information:
                         208.67.220.220 (<name unavailable>) [Valid]
                         208.67.222.222 (<name unavailable>) [Valid]
                   TEST: Delegations (Del)
                      Delegation information for the zone: carman.local.
                         Delegated domain name: _msdcs.carman.local.
                            DNS server: carmanserver.carman.local. IP:192.168.17.5 [Valid]
                   TEST: Dynamic update (Dyn)
                      Test record dcdiag-test-record added successfully in zone carman.local
                      Test record dcdiag-test-record deleted successfully in zone carman.local
                   TEST: Records registration (RReg)
                      Network Adapter
                      [00000007] Broadcom BCM5716C NetXtreme II
    GigE (NDIS VBD Client):

  • How can I delay my MBP from hibernating until the lid has been closed for a set period of time?

    After extensive research, I have been unable to solve this problem and I'm hoping someone can explain this to me.   Everytime I close the lid on my 13-inch, Early 2011 Macbook Pro, it immediately starts to write to disk (solid light on the front) for several seconds until it finally goes into Hibernate mode (flashing light on the front).  The problem is, I frequently close the lid, then immediately reopen it within 15-30 seconds to resume typing or to add something I may have forgotten.   Each time I reopen the lid before the light has started flashing, the MBP wakes for a moment, and allows me to resume typing.  However, the Hibernation process has already begun and within 30 seconds, the screen goes blank.   I have to wake it AGAIN, which is very annoying.
    Based on my research, I could use pmset to change the hibernatemode to 0 (it is currently set at 3).   However, I dont wish to disable hibernate mode completely; I DO want it to save a hibernation image to disk if it happens to run out of battery, so that when I resume I havent lost anything.   
    I then researched using standby and standbydelay to attempt a delay of the write to disk when going into standby mode.   According to the pmset manual:
    standby causes kernel power management to automatically hibernate a machine after it has slept for a
         specified time period. This saves power while asleep
    standbydelay specifies the delay, in seconds, before writing the hibernation image to disk and powering
         off memory for Standby
    I then set these values as below, expecting the laptop to wait 4200 seconds (70 minutes) before trying to write to disk when I close the lid:
    standbydelay         4200
    standby              1
    Unfortunately, that did not work either.   If I close the lid, the light glows solid immediately (indicating it is writing to disk), and if I try to reopen the lid before it is done, it will wake and seem fine, then 30 seconds later it goes blank right in the middle of me typing something.   I usually have to click the mouse several times, or even the power button to re-wake it.  
    I do have InsomniaX installed, for when I want to close the lid and keep the machine awake permanently (while watching videos on airplay) and I have tried quitting that application to test this.  However, when I close/reopen the lid..the result is the same.   I cant keep InsomniaX enabled all the time, because it will never go to sleep when I truly want it to.   If I am not using InsomniaX, I just want to delay hibernation until he lid has been closed for a set period (say 15 minutes or more).  If I have not reopened the lid within that time, I want it to write to disk and go into hibernation mode.  And if the battery runs all the way out, I want it to go into hibernation mode before shutting down so I can recover.
    I would appreciate any help in solving this problem.  Also any insight as to why the standbydelay setting above did not work.   Thanks!

    Whats with the MBP lid? Dont close it ... if you're so concerned! Just go to System Preferences/Energy Saver and set it to how you like it.

  • Intiate Human Task returns complete without any human task intervetion

    I created a simple BPEL flow with a Human Task element and I also tried some of the demo flows. When I initiate the task it immediately returns as COMPLETE. Irrespective of who I make the owner or approver for the task is. bpeladmin seems to be the one responding and marking the task as complete. Is there some configuration I am missing.
    My JDeveloper is 10.1.3.1.0
    BPEL 10.3.1.0
    Has anybody encountered this problem?
    Your help will be much appreciated.

    Happy days. Glad I found this, been banging my head against the wall building a worklist demo - if in the human task definition you don't put anything under "Assignment and routing policy" then you'll get exactly this happen to you - the process will complete immediately, with no trace in the worklist application and no error that I can see.
    I think an error, or at least a warning, should be kicked out in this scenario - be warned - it isn't !

  • Customizing  - task execution complete page

    Dear Guru,
    We are BPM in CE7.2 SP03, Is it possible to customize the task execution complete UI, normally we only see a title and a confirm message in message area. e.g. is it possible to change the normal confirm message text :
      'Task has been successfully complete'
    and change the text size to make it larger ?
    Thanks a lot
    Ray

    Hi Ray,
    Even in 7.2 SAP has given some patches to modify some of the task UI behavior. Not sure which SP it is. But it is worth giving a try. You may explore the below mentioned steps in your server and check.
    To modify the settings navigate to "NWA" -> "Configuration Management" -> "Infrastucture" -> "Application Modules". From the "Modules List" select "webdynpro/resources/sap.com/tcbpemwdui~taskinstance" (hint: filter by the term "taskinstance" to find it more easily). In the "Web Module Details" switch to the tab "Web Dynpro Properties". Select the property sheet "Components/com.sap.tc.bpem.wdui.taskinstance.taskexecution.TaskExecution/settings". The different properties will be listed in "Full Details".
    Br,
    Bala

  • How can I stop an event structure detecting keydown events until the vi has initialised?

    My application has a sequence structure with 3 frames. First one initialises some front pane objects and controls, the second communicates with an external device via a serial port to a start condition and waits for this to complete by polling the device. The third contains the event structure which reads the device when the spacebar is pressed. The problem is that any pressing of the spacebar when the application is in the first 2 frames of the secquence structure is stored and executed as soon as the third frame becomes active. I have tried using dynamic Event registration but to no avail. Am I doing something wrong? can the keyboard be disabled until the second frame complete
    s?

    I usually avoid sequence structures in favor of driving execution order through data dependency (error clusters are great for that). However, since you've already got one, you coul try to add another frame right before your event structure. In that frame, place another event structure that can trap that stray keyboard event. Put a tiny timeout value on it so it doesn't appear to "pause" your VI's response. That event structure will catch any bogus key presses that happen during initialization.
    Having said all that, I still think the behavior is not proper. The event should not be handled if it happened before your VI gets to the event structure. For now, you can try that workaround.
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • Application Deployment vs Task Sequence for MS Office 2013

    Afternoon All,
    I'm in the process of Deploying MS Office 2013 onto our fleet of machines using SCCM 2012
    Our current fleet has MS Office 2010 installed
    I have created a custom .MSP file for my MS Office 2013
    I'm currently just deploying MS Office 2013 by just selecting device collections and it seems to work (besides removing sharepoint workspace 2010)
    I have been trying to streamline the process to clean up MS Office 2010 - I have been told to create a custom task sequence and set it as below
    1. Use Office 2010 Application package set as uninstall
    2. Use Office 2013 Application package set to install
    They say this makes for a more clean process as it's two individual tasks being completed.
    Just want to see how others went from MS Office 2010 to MS Office 2013 using SCCM 2012

    Also note that using task sequences for application installs is currently not supported by Microsoft. It may still work, but it is not supported.
    Daniel Ratliff | http://www.PotentEngineer.com

  • Block application without visible dialog

    Hi
    I need the same behaviour like an application modal dialog but without showing this dialog on the screen. On Windows I can give it a position outside the visible screen area and there it works for me.
    But not all platforms allow me to move the dialog away from the screen.
    Is there another simple way to block the application for user actions?
    Thanks in advance
    Wolfgang R.

    The problem with blindly killing the terminal is that there may be ongoing shell processes running that will also terminate. Sure, from your script perspective, you know you opened one terminal window and that task has finished, but you don't necessarily know what other terminal/shell processes the user has running, or what they're doing, or whether they're safe to quit.
    The right approach is to query Terminal.app to find out how many windows/shells are running, and what they're doing. Only if there are no (or maybe your one) windows open, or if all the windows are idle is the app safe to quit.
    Using do shell script avoids all those issues. In fact it neither knows nor cares whether Terminal.app is running at all.

Maybe you are looking for

  • Mac OS X won't boot--tried everything

    I did the Quicktime update that came out a few days ago... When I restarted, everything went okay until the "Mac OS X" screen. It went about a half a centimeter on the progress bar in the "Mac OS X" window and then the window disappeared and I was fa

  • Calling a Function inside a procedure

    Can you call a function inside a procedure?...if so....how?

  • Assignment on Recon account in FBL3n

    Hello, When checking the line items of reconciliation account in FBL3n - there are 'Reference' data in the 'Assignment' column. This means you post a document to a vendor in subledger with Reference A and Assignment B. In FBL1n you can see it correct

  • ANN: article how to use the CSS Sprites method with the TIP technique

    http://www.tjkdesign.com/articles/how-to_use_sprites_with_my_image_replacement_technique.a sp Thierry Articles and Tutorials: http://www.TJKDesign.com/go/?0 http://www.divahtml.com/products/scripts_dreamweaver_extensions.php - divaGPS - Add "you are

  • PRE 9--clicking on buttons in New Project screen does nothing

    This is strange. PRE 9 had been working fine. Now, when I launch the program and the New Project window comes up asking me to type in a name, indicate where it is being saved to and to change whatever settings I must, I cannot do any of these. I cann