Updating CSA server w/MS updates

Are there known issues with applying the monthly critical MS hotfixes/patches on the CSA server? It is CSA 6.0 on a Server 2003 OS; I am about to start patching all Windows servers as MS releases them, but I don't want to break CSA in the process.

Thanks for the response. I spoke to another engineer as well and he was under the impression that MS updates should not affect the CSA server.

Similar Messages

  • Data in server is not updated

    i have modify the data STREET to "ANG MO KIO"
    http://i192.photobucket.com/albums/z231/yzme/d1.gif
    but the data in server still "HEAVEN ST"
    http://i192.photobucket.com/albums/z231/yzme/d2.gif
    I am using Time2Way T01, if it is when i sync the data will be uploaded, or do i need to configure somewhere to get the data upload ?
    if the data in client and middleware is different, when i sync , the data from the middleware will again download to the client replace the modified values
    OR
    the data in the client will uploaded to the middleware and trigger the MODIFY bapi wrappers ?
    <b>
    when i check my MEREP_MON, and MEREP_LOG there is no data inside this meaning after i changed the values and perform the sync, Inbox and Outbox still remain the previous data as well as inside the MEREP_LOG,
    is it the bapi wrapper not call by the client ?
    </b>
    and i find out that my bapi not get called, what additional code should i add instead of the code below.
    DO I NEED TO IMPLEMENT SOME CODE FOR UPLOADER ??
    do i have to change the reqDirectSync="true", if yes, how do i changed, just change inside the editor, or there is somewhere to configure in sapgui
    after i changed the data , i try to sync, and i check on merep_mon
    what specific or additional steps i need to configure, on uploader / receiver or synchronizer
    <b>i do not implement any syncBoDelta or global reset ?</b>Can someone explain the term "delta" to me and its activities?
    if i have upload something, and sync, the Inbox should have something right ??
    i just put add this code to modify my records
    public String modifyRecord(String eventName,boolean didNavigate){
                             String syncBoName="ZCON";
                             String syncKey="0001230297";
                             tableViewBean.setString(syncBoName +" "+syncKey);
                             System.out.println("SyncBoName: " +syncBoName + " syncKey: " +syncKey);
                             tcp = TableContentProvider.instance(syncBoName);
                             tcp.modifyTable(syncBoName,syncKey);                                   return JSP_DETAIL_SYNCBOINSTANCE;
    public void modifyRecord(String syncBoName,String syncKey){
    SyncBoDescriptor sbd=null;
    sbd=descriptorFacade.getSyncBoDescriptor(syncBoName);
    SyncBo sb=null;
    try{
    System.out.println("bp 2");
    sb=dataFacade.getSyncBo(sbd,syncKey);
    }catch(PersistenceException pex){
    System.out.println("Exception in modifyRecordLoc:" +pex.getMessage());
    SmartSyncTransactionManager transactionManager;
    try{  transactionManager=dataFacade.getSmartSyncTransactionManager();
    if(!transactionManager.isTransactionStarted()){
    transactionManager.beginTransaction();
    boolean b8=false;
    b8=setHeaderFieldValue2(sb,"STREET","ANG MO KIO");
    transactionManager.commit();
    SetSendType();
    listAllOutDelta();
    checkInboxConflict();
    }catch(Exception e){
    System.out.println("Exception in modifyRecordAmt2:" +e.getMessage());
    public void checkInboxConflict(){
              ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
              MeIterator iter;
              SyncBoResponse resp;
              try {
              iter= errorConflictInbox.getAllSyncBoResponses();
              while(iter.hasNext()){
              resp= (SyncBoResponse)iter.next();
              String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
              String state=resp.getSyncBoResponseState().toString();
              String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
              String msg=resp.getText();// This will return the exact message from the server
              System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +msg);
              System.out.println("state:" +resp.getSyncBoResponseState().toString());
              if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
                   String a=resp.getSyncBoResponseState().toString();
                   resp.acceptClientSyncBo();
                   String b=resp.getSyncBoResponseState().toString();
                   resp.delete();
                   System.out.println("state1: " +a +"state2: " +b);
              boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
              System.out.println("syncStatus:" +syncStatusComplete);
              }catch (Exception e) {
              e.printStackTrace();
    public void listAllOutDelta(){
              SyncBoOutDeltaFacade deltFac=SmartSyncRuntime.getInstance().getSyncBoOutDeltaFacade();
              MeIterator allDelta;
              try {
                   allDelta = deltFac.getAllDelta();
                   while(allDelta.hasNext()){
                             SyncBoOutDelta outDelta=(SyncBoOutDelta)allDelta.next();
                             System.out.println("SyncKey:" +outDelta.getSyncKey() +" Action:" +outDelta.getAction()
                                       +" State:" +outDelta.getStateId() +" SendType:"+outDelta.getSendType());
              } catch (SmartSyncException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (PersistenceException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    public void SetSendType(){
              SmartSyncRuntime ssRuntime = SmartSyncRuntime.getInstance();
              SyncBoOutDeltaFacade boDeltaFacade = ssRuntime.getSyncBoOutDeltaFacade();
              SyncBoDescriptorFacade descF = ssRuntime.getSyncBoDescriptorFacade();
              SyncBoDescriptor myBO = descF.getSyncBoDescriptor("ZCON");
              boDeltaFacade.setSendType(myBO, SyncBoOutDeltaSendType.SEND_DIRECT);
    //SyncManager.getInstance().synchronizeWithBackend(VisibilityType.USER_SHARED);
         public boolean setHeaderFieldValue2(
              SyncBo sb,
              String headerFieldName,
              Object value) {
              SyncBoDescriptor sbd = sb.getSyncBoDescriptor();
              //RowDescriptor trd = sbd.getTopRowDescriptor();
              System.out.println("bp 10");
              RowDescriptor trd=sbd.getRowDescriptor("010");
              System.out.println("bp 11");
              FieldDescriptor fd = trd.getFieldDescriptor(headerFieldName);
              System.out.println("fd:" +fd.getFieldName());
              if (fd != null) {
              BasisFieldType bft = fd.getFieldType();
              //Row header = sb.getTopRow();
              System.out.println("bp 12");
              //Row header = null;
              Row[] header=null;
              //try {
                   //header = sb.getRow("0001211181");
                   //header=sb.getTopRow();
                   header=getItemInstances(sb,"010");
                   if(header==null){
                        System.out.println("is null");
                   }else{
                        System.out.println("not null");
              //} catch (PersistenceException e1) {
                   // TODO Auto-generated catch block
              //     System.out.println("Exception getRow:" +e1.getMessage());
              //     e1.printStackTrace();
              System.out.println("bp 13");
              try {
    //             Integer operator
              if (bft == BasisFieldType.N) {
                   System.out.println("Numeric");
              NumericField nf = header[0].getNumericField(fd);
              if (nf != null) {
              BigInteger ii = new BigInteger(value.toString());
              nf.setValue(ii);
              return true;
              } else {
              return false;
    //             Character operator
              if (bft == BasisFieldType.C) {
                   System.out.println("Character");
              CharacterField cf = header[0].getCharacterField(fd);
              if (cf != null) {
              cf.setValue(value.toString());
              return true;
              } else {
              return false;
    //             Decimal operator
              if (bft == BasisFieldType.P) {
                   System.out.println("Decimal");
              DecimalField df = header[0].getDecimalField(fd);
              System.out.println("bp 1.1");
              if (df != null) {
                   System.out.println("bp 1.2");
              BigDecimal bd = new BigDecimal(value.toString());
              System.out.println("bp 1.3");
              df.setValue(bd);
              System.out.println("bp 1.4");
              return true;
              } else {
                   System.out.println("bp 1.5");
              return false;
    //             Similar operation for time and date operator fields
              if (bft == BasisFieldType.D) {
                   System.out.println("Date");
              DateField df = header[0].getDateField(fd);
              if (df != null) {
              if (value.toString().equals("0")) {
              Date dat = Date.valueOf("0000-00-00");
              df.setValue(dat);
              } else if (!value.toString().equals("")) {
              Date dat = Date.valueOf(value.toString());
              df.setValue(dat);
              } else {
              Calendar cal = Calendar.getInstance();
              java.sql.Date bd =
              new java.sql.Date(cal.getTime().getTime());
              df.setValue(bd);
              return true;
              } else {
              return false;
    //             Similar operation for time and date operator fields
              } catch (SmartSyncException ex) {
              System.out.println(ex.getMessage());
              } catch (PersistenceException e) {
              System.out.println(e.getMessage());
              return false;
    SyncType: T01 Wrapper: GetList,GetDetail,Modify
      <?xml version="1.0" encoding="utf-8" ?>
    - <MeRepApplication schemaVersion="1.1" id="ZCON" version="01">
      <Property name="CLIENT.BUILDNUMBER" />
      <Property name="C_APPLRESOLVE" />
      <Property name="DATA_VISIBLE_SHARED">X</Property>
      <Property name="E_APPLRESOLVE" />
      <Property name="FACADE_C_CLIENT">X</Property>
      <Property name="FACADE_E_CLIENT">X</Property>
      <Property name="HOMEPAGE.INVISIBLE" />
      <Property name="INITVALUE" />
      <Property name="RUNTIME">JSP</Property>
      <Property name="TYPE">APPLICATION</Property>
    - <SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync="false" downloadOrder="1">
    - <TopStructure name="TOP">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <ChildStructure name="010">
    - <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
      <Input type="create">false</Input>
      <Input type="modify">false</Input>
      </Field>
    - <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="CITY1" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="CITY2" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="STREET" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="HOUSE_NUM" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
    - <Field name="REGION" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
      <Input type="create">false</Input>
      </Field>
      </ChildStructure>
      </TopStructure>
      </SyncBO>
      </MeRepApplication>
    Message was edited by:
            yzme yzme

    <u>my intention is very simple, i just need to  update a field in a row and update to the middleware so that the backend will reflect the changes. </u>
    >2 if i set the conflict/error handling to application, then i should have to implement some code for it, right ?
    >3) List syncbooutdelta
    <b>SyncKey:0001233035 Action:M SendType:SEND</b>
    doesnt it mean that when i sync , the uploader will pick up this data and do a modification ??
    i have change the metadata like this
    <SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync=<b>"true" </b>downloadOrder="1">
    1) i try to sync the application and check the worklist monitor, there is nothing in the inbox ? how come ?
    2)if i test using emulator, i try to modify a value and execute, i am getting the following error.
    <u>
    Header action from mobile="MOD", R/3 action="ADD"
    Return code 1 (DOWNLOADER)
    </u>
    i try to modify not "Add"
    3) I am using Time 2 Way , how to check it is synchronous or asynchronous ? in merep_sbuilder, the default asyn. is checked, meaning async ??
    the type is T01 , ASYNC
    4)
    public void checkInboxConflict(){
              ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
              MeIterator iter;
              SyncBoResponse resp;
              try {
              iter= errorConflictInbox.getAllSyncBoResponses();
              while(iter.hasNext()){
              resp= (SyncBoResponse)iter.next();
              String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
              String state=resp.getSyncBoResponseState().toString();
              String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
              String msg=resp.getText();// This will return the exact message from the server
              System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +mtext);
              boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
              System.out.println("syncStatus:" +syncStatusComplete);
              }catch (Exception e) {
              e.printStackTrace();
    <u>bo:ZCON state: INITIAL res: CONFLICT msg:Conflict: R/3 = delete, device = modify
    SyncStatus=true (complete)
    </u>
    5) after that i change my code to this
    while(iter.hasNext()){
      if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
        String a=resp.getSyncBoResponseState().toString();
        String a1=syncBO.getSyncState().toString();
        resp.acceptClientSyncBo();   //No transaction stated to commit
        resp.delete();
    String b=resp.getSyncBoResponseState().toString();
    String b2=syncBO.getSyncState().toString();
    System.out.println("state1: " +a +"state2: " +b);
    System.out.println("SyncState1: " +a1 +"SyncState2: " +b1);
    <u>state1: INITIAL state2: RESOLVED </u>
    <u>SyncStatus1:QUANRANTINE SyncStatus2: INCONSISTENT</u>
    and i try to sync ...no data in worklist
    6)i try to list out all the delta to be uploaded
    ListAllOutDelta to be upload
    <u>SyncKey:0001233349 Action:I State:99925F8E24DFFE49A4563C5E018E9B61 SendType:SEND
    </u>
    i am modifying the rows, not Insert a new row, the Action:'I' instead of 'M',  pls clarify on this.
    after i sync, i found out that there is 2 record with different syncKey but same primary key and all attributes appear to be same except the attribute that i changing.
    <u>SYNCKEY    PERSNUMBER CITY STREET HOUSENO</u>
    0001230298 000000000  HELL <u>ANG MO KIO</u> 0123456789 (modified record)
    0001230299 000000000  HELL <u>HEAVEN ST</u>  0123456789(old record)
    i check the application and found out that the previous record that i modify have its value changing locally but not updated into the backend, after sync, there is another record downloaded into this application which is the old record before i modify with different syncKey.
    but when i check the backend table, there is only 1 record inside, because i dont implement the 'Create' Bapi.
    does it make sense ?
    7) when i check my client , the data is persisted with modified value , but the changes is not reflected in the server, how come the data in client is not uploaded to the server.
    acceptClientSyncBo will make the client wins how come the data is not get updated in server ?
    Re: Regarding modifying Sync BO
    According to him, can anyone translate the things highlighted below
    for modifying one sync bo instance , there is no need to use createUnlinkedCopy()..
    just use like this..
    sb = dataFacade.getSyncBo(sbd,key);
    SmartSyncTransactionManager transactionManager;
    transactionManager = dataFacade.getSmartSyncTransactionManager();
    transactionManager.beginTransaction();
    setHeaderFieldValue(sb,"PERSNUMBER","9866321467");
    setHeaderFieldValue(sb,"FIRSTNAME","RajaSekhar");
    setHeaderFieldValue(sb,"LASTNAME","Varigonda");
    setHeaderFieldValue(sb,"PROFESSION","Technical Specialist");
    setHeaderFieldValue(sb,"***","MALE");
    setHeaderFieldValue(sb,"BIRTHDAY","1977-09-28");
    setHeaderFieldValue(sb,"HEIGHT","165");
    setHeaderFieldValue(sb,"WEIGHT","75");
    // Commit the transaction
    transactionManager.commit();
    setHeaderFieldValue - can be used to set value in new sync bo instance , or modify the instance.
    <b>
    But one main think here have to consider is , if you have created one Sync Bo instance , not synchronized with back end and u have modified that, then thats just like a creation .So during sync this will call Create Bapi Wrapper.
    </b>
    But after synchronization , is u are modifying that instance , then it is a modification(will call MODIFY Wrapper in back end during synchronization). u must have the right to modify this instance in the client side.
    hope u got it.
    u can debug MI Applications in NWDS.
    refer this blog written by Arun
    /people/arunkumar.ravi/blog/2006/02/22/execute-debug-your-mi-code-from-nwds
    let me know , if u have doubts
    Regards
    Kishor Gopinathan
    pls comment...

  • Unable to update SQL Server thru XI using JDBC Adapter

    Hi,
    I am trying to update SQL Server. When I run the scenario I get Success status in sxmb_moni, But when I see in SQL server nothing is getting updated. Can anybody let me know where I may be doing wrong?
    Thanks In Advance.
    Yaseen.

    Hi Yaseen,
    Just go through this link, to see how to install the JDBC drivers,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3867a582-0401-0010-6cbf-9644e49f1a10
    Regards,
    Bhavesh

  • Software Update Server - Deleting old updates to make space for new ones

    On Page 77 of the SystemImage_and_SW_Updatev10.4.pdf Apple recommends "deleting old updates to make space for new ones". I've looked and searched and yet to find a way to do this. The Server Admin interface and the command line options I've looked into don't appear to provide this option.
    So I actually tried stopping the server, moving the updates from /usr/share/swupd/html to another location, starting the server, the server wouldn't start, moving the files back again, the server still won't start.
    1. Does anyone know how you're supposed to "Delete old updates to make space for new ones"
    2. Does anyone have any suggestions as to how to get Software Update service running again?
    Power Mac G5   Mac OS X (10.4.7)  

    Does this article contain anything useful?
    (16738)

  • Software Update Server not supplying updates

    Greetings All,
    I started a SUS on a running server. After configuring it I left it to download all the updates. The updates appear in the list displaying that they are copied and enabled. When I then "pointed" one of the local clients towards it and ran Software Update on the client machine it returned the message that there were no new updates relevant to the machine to be found on the server. Then I tried entering the path to the index file into Safari and it came up making me believe that there were no issues with the connection between the two machines. Since the server must be the problem I then tried this command on the server:
    +grep swupd /etc/swupd/com.apple.server.swupdate.plist > ~/Desktop/update.txt+
    When inspecting the update.txt file I noticed that it was completely empty. After consulting the manual yet again I looked into the /usr/shar/swupd/ directory and found that there were a vast quantity of data in the /html/content/downloads/ directory. After reading a few posts I decided to delete all this data and allow the server to download them again. Now the directory contains 15GB but the issue remains. A grep of com.apple.server.swupdate.plist still comes up empty.
    The only errors that I see in the log are these:
    [Mon Sep 28 10:29:28 2009] [notice] caught SIGTERM, shutting down
    [Mon Sep 28 10:29:34 2009] [notice] Apache/1.3.41 (Darwin) configured -- resuming normal operations
    [Mon Sep 28 10:29:34 2009] [notice] Accept mutex: flock (Default: flock)
    Any ideas? Have I missed something very obvious?
    Thank you for your time and effort on this forum!

    I have been running Software Update Server since a few days after the Mac Mini Server came out. It really helps the other macs in my household get their updates fast - when it works.
    After "a while", the clients stop seeing updates - all at the same time. So, it's not a client problem. The thing that no one else has pointed out is that the "Your software is up to date." message on the client is abnormal.
    In a normal up-to-date client, the "*Your software is up to date.*" modal dialog rolls down from an empty list of updates.
    In this failure case, the modal dialog rolls down from the "*Software updates are available for your computer. Do you want to install them?*" window. This suggests (to me) that the Software Update client saw some indication that an update was available, but later decides not.
    Since this is hard to describe, I've taken a few pictures:
    http://sites.google.com/site/glenntrewitt/software-update-problem

  • Software Update server keeps downloading updates when set not to

    When I first setup our server (10.5.x) for software update, I looked over the option to to uncheck the box for automatically downloading updates from Apple. Since then, it has downloaded pretty much everything. I've unchecked that option and also selected it to delete old updates. It keeps downloading updates and won't delete older updates. We've since upgraded to 10.6.2. Same thing. I've even manually deleted ALL of the updates only to watch them all come back. Any clues?

    Welcome to the wonderful world that is the Software Update Service
    I have the same problem and have yet to find a sensible answer to this problem. I have three Macs at home and only need a small proportion of the updates that Apple supply yet no matter what I do, I can't seem to stop SUS downloading everything even though I don't want it and have told it not to download.
    Best of luck getting any sense out of Apple on this. I'm going to try a home made solution to get round this problem.

  • Windows 2012 R2 server cannot install updates

    Hi,
    I am having trouble performing a windows update on a windows server 2012 R2 box.
    Everytime i go to update it, the box freezes at downloading 0%. If i try to stop the download, the process and service seem to freeze and the only way to move forward is to taskkill /f on the process for wuauserv. 
    I have tried running a dism.exe cleanup and deleting the %windir%\SoftwareDistribution\Download folder as ive seen in some other threads but neither have given me any success.
    I also tried running individual updates one at a time and still seem to freeze up.
    from the update log file I'm seeing error 0x80240037 but im not sure what to make of it and research on the error hasn't helped much. 
    Below is a snippet of the windowsupdate log file.  Any help would be greatly appreciated.
    2014-12-04 22:50:14:841
    1900 db4
    Agent  * Added update {06729A87-4AF6-4208-A94C-3BF36583E573}.210 to search result
    2014-12-04 22:50:14:841
    1900 db4
    Agent  * Added update {086110F9-6500-4ADA-902D-7861CD2CD90B}.206 to search result
    2014-12-04 22:50:14:841
    1900 db4
    Agent  * Added update {3827A9E8-65AF-444E-BBEF-94E3591DBC0F}.210 to search result
    2014-12-04 22:50:14:841
    1900 db4
    Agent  * Found 43 updates and 14 categories in search; evaluated appl. rules of 767 out of 1362 deployed entities
    2014-12-04 22:50:14:856
    1900 d04
    Report REPORT EVENT: {01FA6BE4-87F7-444A-A785-A979FDAE9F62}
    2014-12-04 22:50:14:841-0700 1
    147 [AGENT_DETECTION_FINISHED] 101
    {00000000-0000-0000-0000-000000000000}
    0 0 AutomaticUpdatesWuApp
    Success Software Synchronization
    Windows Update Client successfully detected 43 updates.
    2014-12-04 22:50:14:856
    1900 db4
    Agent *********
    2014-12-04 22:50:14:856
    1900 db4
    Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdatesWuApp  Id = 32]
    2014-12-04 22:50:14:856
    1900 db4
    Agent *************
    2014-12-04 22:50:14:856
    1900 db4
    IdleTmr WU operation (CSearchCall::Init ID 32, operation # 7) stopped; does use network; is not at background priority
    2014-12-04 22:50:14:856
    1900 db4
    IdleTmr Decremented idle timer priority operation counter to 1
    2014-12-04 22:50:14:856
    1900 5e4
    AU >>##  RESUMED  ## AU: Search for updates [CallId = {2F593F92-4EDC-4632-BC5B-4CE7BF6D410F} ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}]
    2014-12-04 22:50:14:856
    1900 5e4
    AU  # 43 updates detected
    2014-12-04 22:50:14:856
    1900 d04
    Report CWERReporter finished handling 10 events. (00000000)
    2014-12-04 22:50:14:856
    1900 d04
    Report CWERReporter finished handling 10 events. (00000000)
    2014-12-04 22:50:14:856
    1900 d04
    Report CWERReporter finished handling 10 events. (00000000)
    2014-12-04 22:50:14:856
    1900 d04
    Report CWERReporter finished handling 10 events. (00000000)
    2014-12-04 22:50:14:856
    1900 5e4
    AU #########
    2014-12-04 22:50:14:856
    1900 5e4
    AU ##  END  ##  AU: Search for updates  [CallId = {2F593F92-4EDC-4632-BC5B-4CE7BF6D410F} ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}]
    2014-12-04 22:50:14:856
    1900 5e4
    AU #############
    2014-12-04 22:50:14:856
    1900 5e4
    AU All AU searches complete.
    2014-12-04 22:50:19:856
    1900 d04
    Report CWERReporter finished handling 4 events. (00000000)
    2014-12-04 22:50:26:121
    1900 7c0
    AU AU received approval from UX for 1 updates
    2014-12-04 22:50:26:121
    1900 7c0
    AU AU setting pending client directive to 'Progress Ux'
    2014-12-04 22:50:26:215
    1900 698
    AU BeginInteractiveInstall invoked for Download
    2014-12-04 22:50:26:215
    1900 698
    AU Auto-approving update for download, updateId = {5FC10D02-C5FF-4A60-9F4B-B34BB8164004}.200, ApprovalIsForUx=1, UpdateOwner=UX, HasDeadline=0, IsMinor=0
    2014-12-04 22:50:26:215
    1900 698
    AU Auto-approved 1 update(s) for download (for Ux)
    2014-12-04 22:50:26:215
    1900 698
    AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2014-12-04 22:50:26:215
    1900 698
    AU #############
    2014-12-04 22:50:26:215
    1900 698
    AU ## START ##  AU: Download updates
    2014-12-04 22:50:26:215
    1900 698
    AU #########
    2014-12-04 22:50:26:215
    1900 698
    AU  # Approved updates = 1
    2014-12-04 22:50:26:215
    1900 698
    AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2014-12-04 22:50:26:215
    1900 698
    AU WARNING: GetCurrentNetworkCostPolicy failed, error = 0x80240037
    2014-12-04 22:50:26:215
    1900 698
    IdleTmr Incremented idle timer priority operation counter to 2

    from the update log file I'm seeing error 0x80240037 but im not sure what to make of it and research on the error hasn't helped much. 
    Below is a snippet of the windowsupdate log file.  Any help would be greatly appreciated.
    2014-12-04 22:50:26:215 1900
    698 AU
    WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2014-12-04 22:50:26:215 1900
    698 AU
    WARNING: GetCurrentNetworkCostPolicy failed, error = 0x80240037
    2014-12-04 22:50:26:215 1900
    698
    0x80240037 is nothing to worry about, this is an "expected" error/warning if the computer is connected to a wired network.
    Keep looking through the WindowsUpdate.log - nothing else you've shown us above describes any errors at all..
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • How to UPDATE ESX Server 3i, 3.5.0, build 207095 using SSH or VSphere CLI remotely!

    Hello Guys,
    Over the past few hours I have been posting related questions and I have gotten a little closer to updating my server/host.
    I have gone to the ESX Server 3i updates (Embedded and Installer) and I have noticed that the first build for ESX 3i is 207095. Which means that I have not done any updates since the installation. CORRECT!
    Now... I have been using "ESX Server 3 Patch Management guide, which instructs us to use esxupdate, but it appears that some of the command in that document is not supported on my host.
    This post: vihostupdate35 | VMware vSphere Blog - VMware Blogs ..... Tells me that I will have to use "vihostupdate35" from a remote CLI which I installed but cannot see how to connect to the server as I cannot find any document that shows the syntax etc.
    At this point I am confused and frustrated and just need a little more guidance from someone who could point me to a document or copy and past the procedures I need to use to get this update done.
    I have downloaded this file to do the UPDATE: "ESXe350-201302401-O-SG.zip" and I have extracted it on the host on a Datastore and copied it to my "/Tmp/ESXi350" folder.
    I have also extracted it there as well just in case I need to browse to the extracted folder, and run any command.
    Can anyone out there help me with the correct SYNTAX and METHOD to get this update installed?
    I can connect with SSH from a windows machine using puTTy.exe as well as I have VSphere CLI installed on another Windows PC and can browse to the "C:\Program Files (x86)\VMware\VMware vSphere CLI\bin" folder to run "vihostupdate35.pl" I can see it in the folder with a "dir" command:
    12/11/2014  03:50 PM                 0 esxcli.exe.log
    08/13/2014  08:55 AM         1,898,106 esxcli.zip
    08/13/2014  08:55 AM            12,300 EULA
    08/13/2014  08:55 AM            63,778 EULA.rtf
    08/13/2014  08:55 AM           207,212 open_source_licenses.txt
    08/13/2014  08:55 AM         2,131,968 python26.dll
    08/13/2014  08:55 AM            31,348 svmotion.pl
    08/13/2014  08:55 AM                82 vcli.bat
    08/13/2014  08:55 AM             9,994 vicfg-advcfg.pl
    08/13/2014  08:55 AM            12,080 vicfg-authconfig.pl
    08/13/2014  08:55 AM             9,196 vicfg-cfgbackup.pl
    08/13/2014  08:55 AM             9,456 vicfg-dns.pl
    08/13/2014  08:55 AM            13,032 vicfg-dumppart.pl
    08/13/2014  08:55 AM            17,081 vicfg-hostops.pl
    08/13/2014  08:55 AM            27,513 vicfg-ipsec.pl
    08/13/2014  08:55 AM            78,858 vicfg-iscsi.pl
    08/13/2014  08:55 AM             7,129 vicfg-module.pl
    08/13/2014  08:55 AM            20,277 vicfg-mpath.pl
    08/13/2014  08:55 AM            18,477 vicfg-mpath35.pl
    08/13/2014  08:55 AM             8,606 vicfg-nas.pl
    08/13/2014  08:55 AM             9,696 vicfg-nics.pl
    08/13/2014  08:55 AM             7,425 vicfg-ntp.pl
    08/13/2014  08:55 AM             2,989 vicfg-rescan.pl
    08/13/2014  08:55 AM            13,808 vicfg-route.pl
    08/13/2014  08:55 AM            22,439 vicfg-scsidevs.pl
    08/13/2014  08:55 AM            12,716 vicfg-snmp.pl
    08/13/2014  08:55 AM             5,731 vicfg-syslog.pl
    08/13/2014  08:55 AM            37,949 vicfg-user.pl
    08/13/2014  08:55 AM            27,369 vicfg-vmknic.pl
    08/13/2014  08:55 AM            13,313 vicfg-volume.pl
    08/13/2014  08:55 AM            37,164 vicfg-vswitch.pl
    08/13/2014  08:55 AM            17,712 vifs.pl
    08/13/2014  08:55 AM            24,230 vihostupdate.pl
    08/13/2014  08:55 AM            13,787 vihostupdate35.pl
    08/13/2014  08:55 AM            41,721 vmkfstools.pl
    08/13/2014  08:55 AM            60,794 vmware-cmd.pl
    08/13/2014  08:55 AM            49,664 w9xpopen.exe
                  56 File(s)      5,317,017 bytes
                   2 Dir(s)  34,432,933,888 bytes free
    ...So how do I complete this?
    (So Close!)

    Thanks A.P.!
    Your post led me to the answer here:
    VMware KB: ESXi Server 3.5 June 2011 Rollup CD image
    I missed an update and for that reason I have to do a clean install as stated at the link above.
    My version cannot do any upgrade or update anymore!
    *** What you need to know about the Secure Key Update ***
    ESXi Server 3.5 June 2011 Rollup CD image (2000593)
    This Installable CD contains ESX Secure Key Update ESXe350-201012401-I-BG.
    For more information on this patch, see Critical Impact: VMware ESXi 3.5, Patch ESXe350-201012401-I-BG: Apply this patch to continue applying patches on ESXi 3.5 hosts after June 2011 (1030002).
    NOTE: If you have not applied this patch by June 1, 2011, you will not be able to apply any patches from then on. To get your hosts updated with ESX Server 3i version 3.5 is to apply this Installable CD as fresh install. Alternatively, upgrade to ESXi 4.0 Update 1 Installable. 
    Thanks for your suggestions ... at least it led me to the answer.
    One clean install coming up!

  • Error while updating Targets-Server : java.lang.reflect.InvocationTargetException

    Hi,
    I got this error below when i try to deploy my ejb.It's happen when i select the
    targets-server in weblogic console. Can anyone help me please?
    Thank you in advance.
    Sukanya
    java.lang.reflect.InvocationTargetException: javax.management.RuntimeOperationsException:
    RuntimeException thrown by the invoke method of the Dynamic MBean
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy10.addDeployment(Unknown Source)
         at weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBeanImpl.java:1516)
         at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:895)
         at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:847)
         at weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(ConfigurationMBeanImpl.java:295)
         at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1356)
         at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1331)
         at weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
         at $Proxy76.setTargets(Unknown Source)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanAttribute.java:92)
         at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:135)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    --------------- nested within: ------------------
    weblogic.management.console.utils.SetException: An error occurred while updating
    Targets-Server on Proxy for mydomain:Application=Wallet,Name=wallet-ejb,Type=EJBComponent
    - with nested exception:
    [java.lang.reflect.InvocationTargetException - with target exception:
    [javax.management.RuntimeOperationsException: RuntimeException thrown by the invoke
    method of the Dynamic MBean]]
         at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:151)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Hi Sukanya,
    Could you please tell me how u solved this error?
    I am also getting the same error!!!
    Sherry.

  • Help! updated to Server 4 with Yosemite now pc based computers will no longer connect to our network

    Hello,
    I have become the defacto tech guy at the catholic school I work at. Within the last week per Apple's advice I updated our 2012 Mac Mini server to Yosemite form Lion and Updated the Server from 2.Something to 4. Now, all of the apple products in the school work fine, but the pc products that the office staff use will not even locate the network. I even brought in a Windows 8 machine in from my house and it would not connect. I set up my 2009 MacBook right next to it and it works fine.
    I am not sure what to do. I have called Apple and Microsoft, however I do not have the budget to pay the multiple hundreds of dollars to talk to the engineers. I have been beating myself up for "doing this" but it is what Apple recommended to me.
    I need to get this right, does anyone have any ideas. Apple says there are no know issues with connectivity with Microsoft product. I have to believe that there is something conflicting. A week ago, everything worked, and right after the upgrade this happened. It cannot be a coincidence.
    Restarted server, router, switches, all of the pc machines. There are no internet outages on the lines. Just need help
    Thank you for any help you can give
    Anthony Frasca
    Social Studies Teacher

    I don't remember where I found this, but it did work for me.

  • HT201210 i need help!??? i just tried to update my ipod and now its making me restore it on itunes and it wont complete the restoring process. Its giving the warning that the updated software server couldn't be reached. Can anybody help????

    i need help!??? i just tried to update my ipod and now its making me restore it on itunes and it wont complete the restoring process. Its giving the warning that the updated software server couldn't be reached. Can anybody help????

    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - Try on another computer/network
    - Wait if it is an Apple problem

  • Please Help!!! 'iTunes cannot connect to iphone update software server'

    I cannot 'Restore' iPhone 3G to pass on to my fiance, after she kindly allowed me to get a new iPhone4 because iTunes 'cannot connect to iphone update software server'. I have tried both our laptop and desktop - both connecting to the internet fine - but neither will connect to the iTunes store nor update servers!!
    Not sure what to try next, have tried setting up new user to no avail.
    I have followed the support guidance and I am not connected through proxy.
    Diagnostics reported as follows:
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    Dell Inc. Dell DV051
    iTunes 9.2.1.5
    QuickTime 7.6.6
    FairPlay 1.8.20
    Apple Application Support 1.3
    iPod Updater Library 9.2d4
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.1.0.62
    Apple Mobile Device Driver 1.49.0.0
    Bonjour 2.0.2.0 (214.3)
    iTunes Serial Number 098625257EFAC14A
    Current user is an administrator.
    The current local date and time is 2010-07-25 12:16:28.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Video Display Information
    Intel(R) 82915G/GV/910GL Express Chipset Family
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {F45A9B15-8BE6-4964-8534-71947B51A91B}
    Description: Intel(R) PRO/100 VE Network Connection - Packet Scheduler Miniport
    IP Address: 192.168.1.77
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: No
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers: 192.168.1.1
    192.168.1.1
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-07-25 10:25:45.
    ** Device Connectivity Tests **
    iPodService 9.2.1.5 is currently running.

    Right, I'm going to try something, if this works, then this'll probably fix a lot of iTunes problems.
    1: Make sure your whole iTunes database is backed up.
    2: Uninstall iTunes, then run "Revo Uninstaller", this will remove ALL traces of iTunes from you computer, not your library.
    I've found out that when un-installing or re-installing over a previous version of iTunes will carry over some problems from previous versions, or even create problems. Registry leftovers can be a problem also. Completely removing iTunes using "Revo Uninstaller" then re-installing will have the same effect as installing iTunes from a fresh OS install. Typically iTunes should be problem free when installed totally fresh.
    3: Re-install the correct version of iTunes fresh and try again.

  • Auto Update of Server.xml file

    Hi
    i'm running JDev 9i (9.0.2) with oc4j server (also 9.0.2).
    I have one project containg Stateless Session bean (WizDecodeCodes)
    I have also another project that calls this Bean. (From Servlet)
    This works fine when you manually update the Parent attribute in the Server.XML file on OC4J after Every deployment.
    Is there a way to configure Jdev to do dependancy updates like this when deploying?
    Tks
    andre

    HI Curt
    At this stage I have only got 1 JSP calling about 10 Servlets with only 2 of the Servlets calling the Single EJB that I have. Only started of with this.
    Found that without the parent entry in the Server.XML file, the Servlet runs fine with the EJB from JDev but the moment you deploy to the same App Server it fails without the Parent entry.
    I'm now starting on more advanced EJB's and it doesn't look that rosy if I look at this problem.
    The other thing is that JDev always adds the last project deployed to the end of the Server.xml file, even if it was deployed before.
    Thus making the sequence of deployement, update of Server.xml file in the correct sequence, etc a real nightmare when the applications grow.
    Any suggestions on how to keep this up to date is welcome. We haven't got a Deployment guy so we have to do all this ourselves!
    Cheers
    Andre

  • Microsoft Exchange Server 2013 Cumulative Update 7 Setup - Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error - Set-SharedConfigDC

    What am I trying to do?
    I have tried installing Microsoft Exchange Server 2013 Cumulative Update 7 Setup on a fresh install of Windows Server 2012 R2 but it gets stuck when running the setup exe on Step 8 of 14 “Mailbox Transport Service” I have included full
    error logs at the bottom of the page but the basics are in order it will throw which loop around are:
    [01/20/2015 17:13:20.0084] [2] Beginning processing Set-SharedConfigDC
    [01/20/2015 17:13:20.0178] [2] The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details No Minimal Required Number of Suitable Directory Servers
    Found in Forest mydomain.com Site Default-First-Site and connected Sites..
    [01/20/2015 17:13:20.0178] [2] No Minimal Required Number of Suitable Directory Servers Found in Forest mydomain.com Site Default-First-Site and connected Sites.
    Exchange is currently running in the envirmonet on 2010 Sp3 I am installing 2013 CU7 fresh so I can migrate the databases over.
    What am I running?
    2 X DC on domain and forest functional level 2008R2 both writable
    1 X fresh install of Windows 2012 R2 which is domain joined
    What have I tried?
    Checked Ipv6 is enabled on all DC NICS and Existing Exchange Servers
    Rebooted every server
    Run setup as Administrator
    My account is part of the domain Enterprise Admin group
    Tried adding "Exchange Server" or "Exchange Enterprise Servers" to the group policy and doing the relevant gpupdate /force and reboot :
    Computer Configuration Windows Settings
    Security Settings + Local Policies
    User Rights Assignment Mange auditing and security log
    Turned off firewall on DC and Exchange Server even stopped the service
    Turned off all AV on the DC and Exchange Server
    Checked I could telnet to global catalog servers on port 3268 which I can
    Checked the global catalog records existed in DNS which they all do
    Done the obvious ping tests all round which confirms connectivity
    Schema has been prepared using appropriate commands before running the setup exe
    setup.exe /PrepareSchema /IacceptExchangeServerLicenseTerms
    Making sure the following path has full permissions:
    EXCHANGE14:\Current\Release\Shared\Datacenter\Setup
    Restarted Microsoft Exchange Active Directory Topology service
    DcDiag all looks good
    What have I noticed that is suspicious?
    Microsoft Exchange Transport service will not start even though both of its dependences services have started:
    Microsoft Filtering Management Service
    Microsoft Exchange Active Directory Topology Service
    It will eventually error with
    “Windows could not start the Microsoft Exchange Transport Service on local computer
    Error 1053: This Service did not respond to the start of control request in a timely fashion”
    This error is from the GUI wizard itself:
    Error:
    The following error was generated when "$error.Clear();
    $maxWait = New-TimeSpan -Minutes 8
    $timeout = Get-Date;
    $timeout = $timeout.Add($maxWait);
    $currTime = Get-Date;
    $successfullySetConfigDC = $false;
    while($currTime -le $timeout)
    $setSharedCDCErrors = @();
    try
    Set-SharedConfigDC -DomainController $RoleDomainController -ErrorVariable setSharedCDCErrors -ErrorAction SilentlyContinue;
    $successfullySetConfigDC = ($setSharedCDCErrors.Count -eq 0);
    if($successfullySetConfigDC)
    break;
    Write-ExchangeSetupLog -Info ("An error ocurred while setting shared config DC. Error: " + $setSharedCDCErrors[0]);
    catch
    Write-ExchangeSetupLog -Info ("An exception ocurred while setting shared config DC. Exception: " + $_.Exception.Message);
    Write-ExchangeSetupLog -Info ("Waiting 30 seconds before attempting again.");
    Start-Sleep -Seconds 30;
    $currTime = Get-Date;
    if( -not $successfullySetConfigDC)
    Write-ExchangeSetupLog -Error "Unable to set shared config DC.";
    " was run: "System.Exception: Unable to set shared config DC.
    at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target, Boolean reThrow, String helpUrl)
    at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target)
    at Microsoft.Exchange.Management.Deployment.WriteExchangeSetupLog.InternalProcessRecord()
    at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
    at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)".
    Exchange logs which have been written:
    **The error will loop around for 8 minutes on trying to set-sharedconfig DC whatever this is trying to do ??
    [01/20/2015 17:13:20.0084] [2] Active Directory session settings for 'Set-SharedConfigDC' are: View Entire Forest: 'True', Configuration Domain Controller:mydomain.com', Preferred Global Catalog: 'mydomain.com', Preferred Domain Controllers:
    '{ mydomain.com}'
    [01/20/2015 17:13:20.0084] [2] User specified parameters: 
    -DomainController:mydomain.com' -ErrorVariable:'setSharedCDCErrors' -ErrorAction:'SilentlyContinue'
    [01/20/2015 17:13:20.0084] [2] Beginning processing Set-SharedConfigDC
    [01/20/2015 17:13:20.0178] [2] The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details No Minimal Required Number of Suitable Directory Servers
    Found in Forest mydomain.com Site Default-First-Site and connected Sites..
    [01/20/2015 17:13:20.0178] [2] No Minimal Required Number of Suitable Directory Servers Found in Forest mydomain.com Site Default-First-Site and connected Sites.
    [01/20/2015 17:13:20.0178] [2] The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details No Minimal Required Number of Suitable Directory Servers
    Found in Forest mydomain.com Site Default-First-Site and connected Sites..
    [01/20/2015 17:13:20.0178] [2] No Minimal Required Number of Suitable Directory Servers Found in Forest mydomain.com Site Default-First-Site and connected Sites.
    [01/20/2015 17:13:20.0178] [2] Ending processing Set-SharedConfigDC
    [01/20/2015 17:13:20.0193] [2] Beginning processing Write-ExchangeSetupLog
    [01/20/2015 17:13:20.0193] [2] An error ocurred while setting shared config DC. Error: The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details
    No Minimal Required Number of Suitable Directory Servers Found in Forest mydomain.com Site Default-First-Site and connected Sites..
    [01/20/2015 17:13:20.0193] [2] Ending processing Write-ExchangeSetupLog
    [01/20/2015 17:13:20.0193] [2] Beginning processing Write-ExchangeSetupLog
    [01/20/2015 17:13:20.0193] [2] Waiting 30 seconds before attempting again.
    [01/20/2015 17:13:20.0193] [2] Ending processing Write-ExchangeSetupLog
    [01/20/2015 17:13:50.0195] [2] Beginning processing Write-ExchangeSetupLog
    [01/20/2015 17:13:50.0273] [2] [ERROR] Unable to set shared config DC.
    [01/20/2015 17:13:50.0273] [2] [ERROR] Unable to set shared config DC.
    [01/20/2015 17:13:50.0288] [2] Ending processing Write-ExchangeSetupLog
    [01/20/2015 17:13:50.0288] [1] The following 1 error(s) occurred during task execution:
    [01/20/2015 17:13:50.0288] [1] 0.  ErrorRecord: Unable to set shared config DC.
    [01/20/2015 17:13:50.0288] [1] 0.  ErrorRecord: System.Exception: Unable to set shared config DC.
       at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target, Boolean reThrow, String helpUrl)
       at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target)
       at Microsoft.Exchange.Management.Deployment.WriteExchangeSetupLog.InternalProcessRecord()
       at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
       at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)
    [01/20/2015 17:13:50.0288] [1] [ERROR] The following error was generated when "$error.Clear();
    $maxWait = New-TimeSpan -Minutes 8
    $timeout = Get-Date;
    $timeout = $timeout.Add($maxWait);
    $currTime = Get-Date;
    $successfullySetConfigDC = $false;
    while($currTime -le $timeout)
    $setSharedCDCErrors = @();
    try
    Set-SharedConfigDC -DomainController $RoleDomainController -ErrorVariable setSharedCDCErrors -ErrorAction SilentlyContinue;
    $successfullySetConfigDC = ($setSharedCDCErrors.Count -eq 0);
    if($successfullySetConfigDC)
    break;
    Write-ExchangeSetupLog -Info ("An error ocurred while setting shared config DC. Error: " + $setSharedCDCErrors[0]);
    catch
    Write-ExchangeSetupLog -Info ("An exception ocurred while setting shared config DC. Exception: " + $_.Exception.Message);
    Write-ExchangeSetupLog -Info ("Waiting 30 seconds before attempting again.");
    Start-Sleep -Seconds 30;
    $currTime = Get-Date;
    if( -not $successfullySetConfigDC)
    Write-ExchangeSetupLog -Error "Unable to set shared config DC.";
            " was run: "System.Exception: Unable to set shared config DC.
       at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target, Boolean reThrow, String helpUrl)
       at Microsoft.Exchange.Configuration.Tasks.Task.WriteError(Exception exception, ErrorCategory category, Object target)
       at Microsoft.Exchange.Management.Deployment.WriteExchangeSetupLog.InternalProcessRecord()
       at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b__b()
       at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)".
    [01/20/2015 17:13:50.0288] [1] [ERROR] Unable to set shared config DC.
    [01/20/2015 17:13:50.0288] [1] [ERROR-REFERENCE] Id=AllADRolesCommonServiceControl___ee47ab1c06fb47919398e2e95ed99c6c Component=EXCHANGE14:\Current\Release\Shared\Datacenter\Setup
    [01/20/2015 17:13:50.0288] [1] Setup is stopping now because of one or more critical errors.
    [01/20/2015 17:13:50.0288] [1] Finished executing component tasks.
    [01/20/2015 17:13:50.0304] [1] Ending processing Install-BridgeheadRole
    Windows Event Viewer:
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=5276) Forest mydomain.com. Exchange Active Directory Provider couldn't find minimal required number of suitable Global Catalog servers
    in either the local site 'Default-First-Site' or the following sites:

    Hi apl228,
    1. Please make sure the IPv6 is enabled.
    2. Please make sure the account that install Exchange server has Administrator permission.
    3. Please make sure DNS has been configured correctly.
    Thanks
    Mavis Huang
    TechNet Community Support

  • Server 2012 R2 Update vs Windows 8.1 Update

    Hi @all,
    i am not sure about this Topic/request, but i hope you can help me :)
    I have a Notebook ... Dell Inc., XPS 15 9530
    So i installed Windows Server 2012 R2 Update.
    After Installation of OS i installed all Driver's from Dell HomePage (Windows 8.1 Driver's) directly from the CAB Package.
    After this i installed all Windows Updates from Microsoft Update.
    Now i see, that in Windows Server 2012 R2 in compare to Windows 8.1 Update some Features are missing
    1.) USB\VID_8087&PID_07DC\5&791A5BE&0&9 missing
    2.) ACPI\VEN_ACPI&DEV_0008
    -> Bluetooth i don't got working see 1. and 2.
    -> WLAN i got working with enabling Wireless LAN Service                               
    3.) Internet Explorer Extensions are Missing so no Flash works...
    So my Question is, which Features and Function's i don't have in Windows Server 2012 R2 Update compare to Windows 8.1
    Please Help :)
    By the way, my idea is...
    Host: Server 2012 R2 incl. DHCP, NAT, WDS, WSUS, SCVMM/ScSM/ScOrch
    Hypervisor's: VMware, HyperV, Citrix (all managed by SCVMM, ScOrch, ScSM)
    virtual Machine's: DC, SCCM, Exchange, Lync, W8.1, W10, W7, W2K3, W2K8R2, W2K12, W10S

    In addition to what Dave is saying about finding drivers from the vendor (Microsoft does not write drivers for those devices, so it is up to the hardware vendor to provide them), you have a pretty aggressive desire for your little notebook.
    "By the way, my idea is...
    Host: Server 2012 R2 incl. DHCP, NAT, WDS, WSUS, SCVMM/ScSM/ScOrch
    Hypervisor's: VMware, HyperV, Citrix (all managed by SCVMM, ScOrch, ScSM)
    virtual Machine's: DC, SCCM, Exchange, Lync, W8.1, W10, W7, W2K3, W2K8R2, W2K12, W10S"
    A single physical machine can run only a single hypervisor - you have listed three.  Your best option is to use Hyper-V and forget the others.  If you are running a hypervisor on a system, you should not run any other services in the parent partition,
    so your idea of running DHCP, NAT, WDS, WSUS, SCVMM/SCSM/SCO on the host in addition to Hyper-V is a bit of a pipe dream.  That means you need to move those into VMs.  You can most likely build all the VMs you have listed, but unless you have a laptop
    with boatloads of memory, you are not likely to be able to get them all running at the same time.  From what I can tell, your particular Dell laptop can have a maximum of 16 GB of RAM.  That's pretty good, but far short of what you would need unless
    you want everything to really limp along.
    . : | : . : | : . tim
    Hi Tim,
    thx for the text, but the text doesn't answer my question...
    I now, what i do, and why i want to work with scvmm.
    host: w2k12R2 with DHCP, NAT, SCVMM, WDS, MDT, WSUS
    1. vm = DC, DNS
    2. vm = hyperV
    3. vm = vmware
    4. vm = citrix
    5. - 10. vm = w7, w8.1, w10, w2k3, w2k8r2, w2k12r2 (all installed over mdt/scvmm)
    11. - 17. vm = msx2010, msx2013, lync2010, lync2013, sccm, scsm, scorch (all installed over mdt/scvmm)
    that i dont start 2 - 4 at the same time is correct but by the way i Need a lab where i can test on every  Plattform ;)
    but my request was about Bluetooth and Different Features from w2k12r2 to w8.1update... ;)

Maybe you are looking for

  • Report on Infoset is not working

    Hi All I was having couple of queries on one infoset which is based on 2 ODS. Later i have removed one ODS and inserted the new ODS. now when i am opening the query it is showing error for those fields which were present in old ODS which i have remov

  • How to connect to remote EJB 3.0 deployed on Glassfish from ADF application

    Hello, as we haven't managed to deploy ADF app with EJB 3.0 on Glassfish AS, nor on tomcat 6 with openEJB, nor on JBOSS 5GA, we're trying to deploy our app with remote interface on tomcat 6. We're using ADF, JSF and EJB 3.0 (Eclipselink as JPA). When

  • Convert rectangle into rounded rectangle

    Hi! Can anyone tell me how I cn convert an existing rectangle into a rounded rectangle please? Also, how do you insert a rectangle/shape of a specific size& position without having to click and drag? I find that when I want to insert a rounded rectan

  • Cisco Prime 2.0 web interface access

    We just installed Cisco Prime Infrastructure 2.0 Express. It seemed to have installed correctly? But Two oddities. First when the system is restarted it takes and inordinate amount of time before the web interface becomes available. Once the web serv

  • Loadmovie issue, only one displays

    hello flash users, i am new to as3 and am having some issues getting movie clips to load via loadmovie. I created two .swf files, both are same size but on different timelines. I simply want to add each to a new movie, one as background and one as ov