Unable to perform update/insert queries on ACCESS db

Hi,
I've configured my odbc (Access driver). I'm using user dsn. The dsn created is "Fitnet". Below are the source code.
I am able to execute SELECT queries by using statment.executequery , but when I try to execute an update or insert query using statment.executeUpdate I get an exeption from the driver "Tow few parameters expected 3 "
What is wrong , do I nead to configure any thing sprciasl on my ODBC ??
Please raplay also to [email protected]
or [email protected]
Thanks Shahar.
Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
String url = "jdbc:odbc:Fitnet";
Connection con= DriverManager.getConnection(url,"","");

HI
I have a class called main maneger that performes the query the code is :
public void ExecuteUpdateQuery(Query query) {
try {
log.writeDebugMessage("Before executing query");
log.writeDebugMessage("Executing : " + query.getQuery());
stmt.executeUpdate(query.getQuery());
log.writeDebugMessage("After executing query");
} catch(SQLException e) {
System.out.println(e.getSQLState() +" " + e.getMessage());
log.writeException(e);
The querie itself is (this is a constractore that creates the query :
public AddTraineeQuery(Trainee Trainee) {
DateFormat dF = DateFormat.getDateInstance();
query = "INSERT INTO Trainee(Trainee_Id , Trainee_password , Trainee_Address, Trainee_Name , Trainee_Phone , Trainee_Gender , Trainee_SessionTime , Trainee_Purpose , Trainee_HealthStatus , Trainee_StartDate , Trainee_Birthday) VALUES (" +
Trainee.getUserId() + ',' +
'"' + Trainee.getUserPassword()+ '"' +',' +
'"' + Trainee.getUserAddress() + '"' + ',' +
'"' + Trainee.getUserName() + '"' + ',' +
Trainee.getUserPhoneNumber() + ',' +
Trainee.getUserGender() + ',' +
Trainee.getTraineeSessionTime() + ',' +
Trainee.getTraineeTrainingPurpose() + ',' +
Trainee.getTraineeHealthStatus() + ',' + '"' +
dF.format(Trainee.getUserStartDate()).toString() + '"' + ',' + '"' +
dF.format(Trainee.getUserBirthDay()) .toString() + '"' + ')';
When I look at the log output I see :
INSERT INTO Trainee(Trainee_Id , Trainee_password , Trainee_Address, Trainee_Name , Trainee_Phone , Trainee_Gender , Trainee_SessionTime , Trainee_Purpose , Trainee_HealthStatus , Trainee_StartDate , Trainee_Birthday) VALUES (6,"333","hhhh","rafi",048231821,true,63,4,true,"Feb 22, 2002","Feb 22, 2002")
and I get the eror
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 4.
P.S when I copy and the query from the log into access db it works
Thanks

Similar Messages

  • How to perform UPDATE/INSERT

    Hi,
    How can i perform update/insert we do in OWB, which insert records if they are not available in target and updates them if they already exists.
    I am now using IKM Oracle Incremental Update(MERGE)
    but i am getting some error while execute
    VSG

    Here is the error.
    com.sunopsis.core.SnpsInexistantObjectException: There is no connection for this logical schema/context pair:RDDM_LOGICAL / STGDW_LOGICAL
         at com.sunopsis.dwg.dbobj.SnpConnect.getSnpConnectByLSchemaNameAndContext(SnpConnect.java)
         at com.sunopsis.dwg.dbobj.SnpConnect.getSnpConnect(SnpConnect.java)
         at com.sunopsis.dwg.dbobj.SnpSession.getDwgConnectLst(SnpSession.java)
         at com.sunopsis.dwg.dbobj.SnpSession.getConLst(SnpSession.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • * * Procedure needs a way to  perform  update, insert or delete to...

    Hi Gurus,
    I got Assignment & need your help how to write this procedure efficiently.
    ** The procedure needs a way to actually perform the update, insert or delete to bring the reference data up-to-date with the refresh table.**These columns are for internal use and should not be compared to the refresh tables.
    Column 1
    Column 4
    Column 5
    Column 7
    Column 9
    Column 12
    Column 22
    Column 24
    1)     I would list out the columns in the cursors in place of the *. Or better define a record with %ROWTYPE.
    2)     You will need to include a way to look for rows that may be in one table and not the other.
    a.     Insert the rows that exist in the refresh table, but are missing from the reference table.
    b.     Delete the rows that are found in the reference table, but do not appear in the refresh table.
    3)     You also need to provide for handling the expiration date. Our default expiration date is ‘01-JAN-2500’, meaning if the refresh table has a futuristic expiration date or null, then our default expiration date is considered valid. Also this date needs to be added to any new rows created as a result of the refresh, if you leave the EXPIRATION_DATE column out of the insert it should default to the above date.
    4)     I assume that Differences is where you plan to list the actual data values that differ. If you don’t list the whole row I would at least list the primary key, in addition to what columns are different.
    5)     The procedure needs a way to actually perform the update, insert or delete to bring the reference data up-to-date with the refresh table.
    Thanks in advance

    Hi,
    Take a look at merge
    http://www.psoug.org/reference/merge.html
    Keep Smiling
    Bob R

  • Using datasources: How to manage transactions when perform. update/insert?

    I've been trying to find information on how datasources manage transacctions but I've been unable to find much information. I've read that for XA datasources you dont have to commit, save and rollback manually, but how are transactions managed for non-XA datasouces?+ I've only seen examples with select statements, such as in the example on this page [this page|http://developers.sun.com/jscreator/reference/techart/2/jdbc.html], but I've never seen a working example with insert and updates.
    Can anyone point me to some examples?*
    Also, when I use the DriverManager instead of the DataSource for doing updates/inserts I use the setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE) method. Can that be used with datasources?+
    Thank you <img class="emoticon" src="images/emoticons/laugh.gif" border="0" alt="" />

    If you are using a connection pool, how are you guaranteeing that you are using the same connection throughout the same application? Look at the following:
    1) You grab a connection from the pool
    2) You call procedure A
    3) You call procedure B and issue rollback in procedure
    4) You call procedure C
    5) You close your connection
    Are you saying you made changes in procedure A and when you issued a hard rollback in procedure B, the changes in A were not rolled back?
    I'm guessing the problem is that you are not issuing your statements using the same connection.

  • Unable to perform update with Sony Bridge for Mac

    I have not been able to update my Xperia Z1 (model C6906) through Sony Bridge for Mac.
    While attempting this in SBM version 3.5 the following messages would appear:
    There was an issue with the update engine. Please contact technical support. (reason:failed to start local server)
    then:
    There was an issue with the update engine. Please contact technical support. (reason:failed to parse installer XML(code 11))
    SBM has now updated to version 3.6(3602) and still no luck. The software is able to download the update engine but then remains stuck in the initializing phase, talking to update engine.
    My phone is at build# 14.1.G.2.257. The proposed update seems minor, as the build # doesn't change but it would be great to have this issue resolved in time for kitkat 4.4
    There doesn't appear to be a problem with the phone as the staff at the Sony Store were able to perform my initial out of the box update with PC Companion.
    My Mac is running  OS10.9 and the java version is 1.6.0_65
    Any advice would be much appreciated

    In the mean time it would be worth updating the version of java you are running on your MAC:
    http://www.java.com/en/download/help/mac_java_update.xml
    Don't forget to mark posts that answers the topic as Accepted Solution. 
    If you find any post helpful, press Kudos.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Unable to make updates/deletes using MS Access to Oracle 11g table

    Please help! We recently upgrade our Oracle db to 11gR2. Prior to that, I could make updates to the 9i database just fine, now (after resolving a tns names issue), I am able to connect using ODBC and the MS Access database and I can see data (ie. select) but I cannot make any updates. When I try, it appears to work but when I query for the data just entered, its not there! I am not very experienced so I need help! We are using the Oracle drivers from 10.2

    The most common cause for this that I've seen is that the Oracle table doesn't have a primary key, and when doing the table link in MSAccess when it prompted for a primary key the dialogue was dismissed. Without a PK the link is read only.
    Try a new table link, and make sure to select pk columns if prompted
    Hope it helps,
    Greg

  • Unable to perform update from OS X version 10.5.4 to 10.5.5

    Automatic updater downloaded the OS X 10.5.5 update and tried to install it but failed.
    The installation stalled at "Configuration Installation" with a small amount of blue showing in the progress bar. I left it for several hours but it got no further.
    Have I corrupt download or what?

    Please read these two support articles:
    http://support.apple.com/kb/HT2405
    and
    http://support.apple.com/kb/HT1569?viewlocale=en_US

  • On submit perform an insert on one table and an update on aother table

    I am trying to perform and insert on the table one table (the wizard created my form the insert is going against the table that I created using the wizard) and on the form is on field that is also in another table. Therefore, I am trying to perform an update on one attribute of one table and a insert into another table. How do I do this in apex?

    If you have used wizard to create form, then you may see a process of type 'Automatic Row Processing (DML)' in your page which will perform INSERT/UPDATE/DELETE on your form table. Here you can see APEX performs INSERT only when REQUEST is in 'INSERT, CREATE, CREATE_AGAIN, CREATEAGAIN'
    So create one more PL/SQL page process which will execute at 'on Submit after validations' and write update process as follows
    begin
    -- pseudo table/columns
    update tbl_second
    set col1 = :p1_item
    where pk_col = :p1_pk_item;
    end;Make this process conditional so that it will perform UPDATE only when request value is in 'INSERT, CREATE, CREATE_AGAIN, CREATEAGAIN' ( i.e. only when you are inserting into your form table)
    Cheers,
    Hari
    p.s. I think you may also need to update the second table when some-one updates your form table.
    Edited by: Hari_639 on Oct 26, 2009 9:46 AM

  • Where can I find within the iTunes Apps/photos/... which are unable to be updated on my iPhone when attempting to perform a sync.  I was told it is over 2,700 items.?

    I'm trying to locate within the iTunes App a location to identify what information is unable to be loaded / sync'ed with my iPhone.  I have over 2,700 items which were unable to be updated and I don't know why or where to findout what they are.  iPhone has no additional information.  Just indicates, look in iTunes for further infomration.

    Added information: the PowerMac's System Pref's > Network does not display a WiFi link.  It is connected to the base by ethernet cable and certainly has no problem reaching the internet and mounting the old PowerBook (OS 10.4.11) via WiFi address.
    But it still won't mount/share the new PowerBook (OS 10.8.2).
    And I still need to make this connection, and find a list of all the required settings & procedures to make it.

  • Update/insert/delete data from xcelsius to Database via web service

    Hi,
    I need to create dashboard that go function can <b>update/insert/delete</b> data send to <u>Database</u> thru <u>web services</u>, as i know got 2 xcelsius add-on software which support those of function <b>InfoBurst</b> and <b>flynet </b>
    <b>InfoBurst</b>
    http://www.infosol.com/azbocug/minutes/4-Writeback%20to%20a%20Database%20with%20Xcelsius.pdf
    <b>flynet </b>
    http://www.flynetviewer.com/public/community/Blogs/FlynetXcelsiusServerUser/default.aspx
    Except this 2 purchase add-on xcelsius, any other solution ?  
    Maybe need to write some in MSSQL or C# programming which enable insert, update, delete ...etc  ?
    *note: i not use Xcelsius Engage Server , i use Xcelsius Engage only
    thanks,
    regards
    s1
    Edited by: Leong Pui Kee on Mar 1, 2011 6:06 AM

    Hi,
    As of now in Xcelsius/Dashboard Design there is no feature or functionality to insert/update/delete data from database.
    Solution:
    Create a Web service in let’s say C# or Java, which will perform insert/update/delete operation.
    In Xcelsius add Web Service connection and user above web service.
    Xcelsius Web Service connection provides option to pass input values to a Web Service (Input Pane) and get the result (Output values pane).
    We can pass values to be written to the database as a input to Web Service via Web Service connection from Xcelsius and write data to the database.
    Note:
    Performing delete operation from Xcelsius Dashboard could be risky and may delete important data from database. I would not prefer giving delete option/functionality in Xcelsius dashboard.
    Hope this helps!
    Thank you.
    Regards,
    Vinay Mhaske

  • Unable to detect updates, 100% CPU usage by wuauserv

    Lawrence,
    Below is the log you requested.  This was taken after renaming the SoftwareDistribution directory.  The user reported CPU usage went back up to 100% at around 14:00 after which we killed the service.  This is too long for one post, so I'm breaking it in two.
    2010-04-14 06:02:55:323 1044 a68 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:02:55:323 1044 a68 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:02:55:323 1044 a68 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:02:55:323 1044 a68 Service *************
    2010-04-14 06:02:55:323 1044 a68 Service ** START **  Service: Service startup
    2010-04-14 06:02:55:323 1044 a68 Service *********
    2010-04-14 06:02:55:604 1044 a68 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:02:55:604 1044 a68 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:02:55:620 1044 a68 Agent   * Access type: No proxy
    2010-04-14 06:02:55:620 1044 a68 Agent   * Network state: Connected
    2010-04-14 06:02:58:995 1376 cc8 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:02:58:995 1376 cc8 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:02:58:995 1376 cc8 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:02:58:995 1376 cc8 DtaStor Default service for AU is {00000000-0000-0000-0000-000000000000}
    2010-04-14 06:02:59:010 1376 cc8 DtaStor Default service for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2010-04-14 06:02:59:010 1044 a68 Agent WARNING: Failed to read the service id for re-registration 0x80070002
    2010-04-14 06:02:59:010 1044 a68 Agent WARNING: Missing service entry in the backup data store; cleaning up
    2010-04-14 06:03:13:104 1044 e68 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:03:13:104 1044 e68 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:03:13:104 1044 e68 Agent   * WSUS server:http://wsus01
    2010-04-14 06:03:13:104 1044 e68 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:03:13:104 1044 e68 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:03:13:104 1044 e68 Agent   * Windows Update access disabled: No
    2010-04-14 06:03:13:135 1044 e68 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:03:13:214 1044 e68 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:03:13:214 1044 e68 AU AU setting next detection timeout to 2010-04-14 13:03:13
    2010-04-14 06:03:13:214 1044 e68 AU AU setting next sqm report timeout to 2010-04-14 13:03:13
    2010-04-14 06:03:13:214 1044 e68 AU   # WSUS server:http://wsus01
    2010-04-14 06:03:13:214 1044 e68 AU   # Detection frequency: 22
    2010-04-14 06:03:13:214 1044 e68 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:03:13:214 1044 e68 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:03:13:229 1044 e68 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:03:13:229 1044 e68 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:03:13:245 1044 e68 AU Initializing featured updates
    2010-04-14 06:03:13:245 1044 e68 AU Found 0 cached featured updates
    2010-04-14 06:03:13:260 1044 e68 AU AU finished delayed initialization
    2010-04-14 06:03:13:260 1044 e68 AU Triggering AU detection through DetectNow API
    2010-04-14 06:03:13:260 1044 e68 AU Triggering Online detection (non-interactive)
    2010-04-14 06:03:14:495 1044 a68 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:03:14:495 1044 a68 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:03:14:542 1044 a68 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:03:14:542 1044 a68 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Revision = A05
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:03:14:542 1044 a68 Report   * Locale ID = 1033
    2010-04-14 06:03:14:760 1044 a68 AU #############
    2010-04-14 06:03:14:760 1044 a68 AU ## START ##  AU: Search for updates
    2010-04-14 06:03:14:760 1044 a68 AU #########
    2010-04-14 06:03:14:760 1044 a68 AU <<## SUBMITTED ## AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:03:14:792 1044 ad4 Agent *************
    2010-04-14 06:03:14:792 1044 ad4 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 06:03:14:792 1044 ad4 Agent *********
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Online = Yes; Ignore download priority = No
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2010-04-14 06:03:14:792 1044 ad4 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Search Scope = {Machine}
    2010-04-14 06:03:14:979 1044 ad4 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 06:03:15:073 1044 ad4 Misc  Microsoft signed: Yes
    2010-04-14 06:03:15:229 1044 ad4 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2010-04-14 06:03:15:245 1044 ad4 Misc  Microsoft signed: Yes
    2010-04-14 06:03:15:245 1044 ad4 Setup ***********  Setup: Checking whether self-update is required  ***********
    2010-04-14 06:03:15:245 1044 ad4 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2010-04-14 06:03:15:323 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:339 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:370 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:370 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:385 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:385 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:432 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:432 1044 ad4 Setup   * IsUpdateRequired = No
    2010-04-14 06:03:15:589 1044 ad4 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2010-04-14 06:03:15:589 1044 ad4 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 06:03:15:760 1044 ad4 PT WARNING: Cached cookie has expired or new PID is available
    2010-04-14 06:03:15:760 1044 ad4 PT Initializing simple targeting cookie, clientId = 8fba4725-278a-4588-b0cb-713b711911d5, target group = , DNS name = client100.domain.com
    2010-04-14 06:03:15:760 1044 ad4 PT   Server URL = http://wsus01/SimpleAuthWebService/SimpleAuth.asmx
    2010-04-14 06:05:15:465 1044 ad4 Agent WARNING: Failed to evaluate Installed rule, updateId = {BFE5B177-A086-47A0-B102-097E4FA1F807}.102, hr = 8024E001
    2010-04-14 06:08:54:374 2164 b4c Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:08:54:374 2164 b4c Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:08:54:374 2164 b4c AUClnt wuauclt.exe launched with command line wuauclt /reportnow
    2010-04-14 06:08:54:374 2164 b4c Service Registering proxy/stubs.
    2010-04-14 06:08:54:405 2164 b4c AUClnt wuauclt.exe is exiting with code 0x00000000
    2010-04-14 06:10:10:531 1044 ad4 Misc WARNING: Send failed with hr = 80072ee2.
    2010-04-14 06:10:10:531 1044 ad4 Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2010-04-14 06:10:10:531 1044 ad4 PT   + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2010-04-14 06:10:10:531 1044 ad4 PT   + Caller provided credentials = No
    2010-04-14 06:10:10:531 1044 ad4 PT   + Impersonate flags = 0
    2010-04-14 06:10:10:531 1044 ad4 PT   + Possible authorization schemes used =
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncUpdates failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: PTError: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncUpdates_WithRecovery failed.: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: Sync of Updates: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncServerUpdatesInternal failed: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 Agent   * WARNING: Failed to synchronize, error = 0x80072EE2
    2010-04-14 06:10:10:547 1044 ad4 Agent   * WARNING: Exit code = 0x80072EE2
    2010-04-14 06:10:10:547 1044 ad4 Agent *********
    2010-04-14 06:10:10:547 1044 ad4 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 06:10:10:547 1044 ad4 Agent *************
    2010-04-14 06:10:10:547 1044 ad4 Agent WARNING: WU client failed Searching for update with error 0x80072ee2
    2010-04-14 06:10:10:563 1044 ad4 Report REPORT EVENT: {074D4BD9-B5D0-4706-B299-6F52972B8A5E} 2010-04-14 06:10:10:547-0700 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072ee2 AutomaticUpdates Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2010-04-14 06:10:10:578 1044 b70 AU >>##  RESUMED  ## AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:10:10:578 1044 b70 AU   # WARNING: Search callback failed, result = 0x80072EE2
    2010-04-14 06:10:10:578 1044 b70 AU   # WARNING: Failed to find updates with error code 80072EE2
    2010-04-14 06:10:10:578 1044 b70 AU #########
    2010-04-14 06:10:10:578 1044 b70 AU ##  END  ##  AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:10:10:578 1044 b70 AU #############
    2010-04-14 06:10:10:578 1044 b70 AU AU setting next detection timeout to 2010-04-14 18:10:10
    2010-04-14 06:10:10:578 1044 b70 AU AU was unable to detect updates for more than 48 hours
    2010-04-14 06:10:10:781 1044 ad4 Report Uploading 1 events using cached cookie, reporting URL =http://wsus01/ReportingWebService/ReportingWebService.asmx
    2010-04-14 06:10:10:813 1044 ad4 Report Reporter successfully uploaded 1 events.
    2010-04-14 06:10:15:578 1044 ad4 Report REPORT EVENT: {EEA6E357-20F8-4952-969E-A84B380FD0A6} 2010-04-14 06:10:10:578-0700 1 149 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Failure Software Synchronization Unable to Connect: Windows is unable to connect to the automatic updates service and therefore cannot download and install updates according to the set schedule. Windows will continue to try to establish a connection.
    2010-04-14 06:10:17:657 1044 e68 AU AU found 0 updates for install at shutdown
    2010-04-14 06:10:17:657 3700 9e8 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:10:17:657 3700 9e8 Misc   = Process: C:\WINDOWS\Explorer.EXE
    2010-04-14 06:10:17:657 3700 9e8 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:10:17:657 3700 9e8 Shutdwn 0 updates are ready to be installed at shutdown.
    2010-04-14 06:10:17:657 3700 9e8 Shutdwn Install at shutdown: no updates to install
    2010-04-14 06:10:39:407 1044 a68 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 06:10:40:063 1044 a68 Service *********
    2010-04-14 06:10:40:454 1044 a68 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 06:10:40:454 1044 a68 Service *************
    2010-04-14 06:11:50:484 1044 1f0 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:50:671 1044 1f0 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:11:50:671 1044 1f0 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:11:50:484 1044 1f0 Service *************
    2010-04-14 06:11:50:687 1044 1f0 Service ** START **  Service: Service startup
    2010-04-14 06:11:50:687 1044 1f0 Service *********
    2010-04-14 06:11:50:687 1044 1f0 Service updated service status to 2
    2010-04-14 06:11:50:718 1044 1f0 Setup Processing any required registration
    2010-04-14 06:11:50:781 1044 1f0 Service Registering proxy/stubs.
    2010-04-14 06:11:50:843 1044 1f0 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:11:50:843 1044 1f0 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:11:50:843 1044 1f0 Misc CSusProxyManager successfully initialized.
    2010-04-14 06:11:50:843 1044 1f0 Misc Default Winhttp settings are Proxy : <(null)> ProxyByPass : <(null)>
    2010-04-14 06:11:50:843 1044 1f0 Agent   * Access type: No proxy
    2010-04-14 06:11:50:843 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service failed to initialize Ip V6 network monitor with error 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 0
    2010-04-14 06:11:50:859 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:50:875 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:50:875 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:11:50:875 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:11:50:875 1044 1f0 Agent   * Network state: Connected
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE Handler QI: ISusExprEvaluate3
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr CEEMsiHandler::AddRef: refcount is 2
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE Handler QI: unsupported interface
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:937 1044 1f0 DnldMgr Initializing BITS callback handler.
    2010-04-14 06:11:50:968 1044 1f0 DnldMgr AddRef: ref count -> 1
    2010-04-14 06:11:50:968 1044 1f0 DnldMgr DH Listener AddRef: ref count -> 1
    2010-04-14 06:11:50:968 1044 1f0 DtaStor FATAL: DS: 0x80040154: Failed to CoCreate datastore
    2010-04-14 06:11:51:062  600 260 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:51:062  600 260 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:11:51:062  600 260 AUClnt wuauclt.exe launched with command line "C:\WINDOWS\system32\wuauclt.exe" /RunStoreAsComServer Local\[414]SUSDS7d0022572d2d924fa8b53b9aee537d0e
    2010-04-14 06:11:51:218  600 260 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:51:218  600 260 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:11:51:218  600 260 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:11:51:218  600 260 Service Registering proxy/stubs.
    2010-04-14 06:11:51:218  600 260 DtaStor Trying to make out of proc datastore active
    2010-04-14 06:11:51:937  600 260 DtaStor Created new ESE session
    2010-04-14 06:11:51:937  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:51:937  600 260 DtaStor CSusDatastore AddRef: refcount is 1
    2010-04-14 06:11:52:078  600 260 DtaStor Attempting to open table tbStoreVersion
    2010-04-14 06:11:52:078  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:078  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:078  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:078  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:078  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:078  600 260 DtaStor Store version is 0.185
    2010-04-14 06:11:52:484  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:11:52:500  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:500  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:500  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:546  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:546  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:546  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:11:52:546  600 260 DtaStor CSusDatastore Release: refcount is 0
    2010-04-14 06:11:52:546  600 260 DtaStor SUS client data store initialized
    2010-04-14 06:11:52:562  600 260 DtaStor Out of proc datastore is now active
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastoreWrap QI: IClassFactory
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: IUnknown requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 1
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 2
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: IUnknown requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 3
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: ISusDatastore requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: ISusDatastore requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Attempt 0 to CoCreate the datastore succeeded
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Session caching is enabled
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor Retrieved existing ESE session
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: IUnknown
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:593 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor Section 0 locked by session 000C0728 (thread: 608)
    2010-04-14 06:11:52:593  600 260 DtaStor Attempting to open table tbFeaturedUpdateNotificationsData
    2010-04-14 06:11:52:593  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:593  600 260 DtaStor Attempting to open table tbFeaturedUpdateNotificationsLocData
    2010-04-14 06:11:52:593  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:11:52:593  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:11:52:609  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:609  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:609  600 260 DtaStor Section 0 unlocked by session 000C0728 (thread: 608)
    2010-04-14 06:11:52:640 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:11:52:640 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:11:52:640 1044 1f0 DtaStor Created timer queue timer with delay 300 sec
    2010-04-14 06:11:52:640 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:11:52:687 1044 1f0 Agent ref count on CCR after AddRef is 2
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 1 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 0 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 14 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service new event 12 of type 1 added to event system
    2010-04-14 06:11:52:765 1044 1f0 Agent ref count on CCR after AddRef is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:11:52:781 1044 1f0 Service destination 1 subscribes for subscription 18 with internalrouting 5
    2010-04-14 06:11:52:781 1044 1f0 Setup Using INF-based selfupdate
    2010-04-14 06:11:52:843 1044 1f0 Service updated service status to 4
    2010-04-14 06:11:52:921 1044 1f0 Service Service status is now SERVICE_RUNNING
    2010-04-14 06:11:52:921 1044 1f0 Service Event system starts running
    2010-04-14 06:11:52:921 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:52:921 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:52:921 1044 1f0 Service failed to start listening in CIpAddressMonitor with error 8007273f, because it is not initialized
    2010-04-14 06:11:52:937 1044 1f0 Service failed to start listening Ip V6 network monitor with error 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service Updated network state. Prev Num of Interfaces : 1, now : 1.
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:52:937 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:11:52:937 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:11:52:937 1044 1f0 Service networkState = 2. DidNetworkStatusChanged = 0, DidNetworkConnectivityOptionsChanged = 0
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:54:359 1044 1f0 Service Signal subscription event 7
    2010-04-14 06:11:54:359 1044 1f0 Service Wait object starts waiting with timeout 43406 msecs
    2010-04-14 06:12:38:289 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:289 1044 1f0 Agent start delayed initialization of WU client
    2010-04-14 06:12:38:289 1044 1f0 Report Logging events locally at C:\WINDOWS\SoftwareDistribution\ReportingEvents.log.
    2010-04-14 06:12:38:289 1044 1f0 Report Event cache directory at C:\WINDOWS\SoftwareDistribution\EventCache.
    2010-04-14 06:12:38:289 1044 1f0 Report BatchFlushAge = 15361.
    2010-04-14 06:12:38:289 1044 1f0 Report BatchFlushAgeSus = 584.
    2010-04-14 06:12:38:289 1044 1f0 Report SamplingValue2 = 800, sampling required = Yes, detect sampling required = Yes
    2010-04-14 06:12:38:289 1044 1f0 Report Write buffer is empty. Not scheduling a flush.
    2010-04-14 06:12:38:511 1044 1f0 Report Initializing uploader for new server 3da21691-e39d-4da6-8a4b-b43877bcb1b7.
    2010-04-14 06:12:38:543 1044 1f0 Report Server 3da21691-e39d-4da6-8a4b-b43877bcb1b7 had empty event cache. No uploader created.
    2010-04-14 06:12:38:543 1044 1f0 Report Failed to initialize event uploader for new server 3da21691-e39d-4da6-8a4b-b43877bcb1b7 with hr = 8024000c.
    2010-04-14 06:12:38:543 1044 1f0 Report WARNING: Found invalid server ID WU while enumerating event caches. Ignoring key. hr = 800706a9.
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service Signal subscription event 8
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 2 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 2 subscribes for subscription 8 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service destination 2 subscribes for subscription 9 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 2 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 7 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service Signal subscription event 8
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 2 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 8 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 9 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 10 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 4 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Agent refresh WU client global setting cache
    2010-04-14 06:12:38:591 1044 1f0 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:12:38:591 1044 1f0 Agent   * WSUS server:http://wsus01
    2010-04-14 06:12:38:591 1044 1f0 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:12:38:591 1044 1f0 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:12:38:591 1044 1f0 Agent   * Windows Update access disabled: No
    2010-04-14 06:12:38:591 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:591 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:607  600 260 DtaStor Attempting to open table tbCcrDownloadData
    2010-04-14 06:12:38:607  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:607  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:607  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:623  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:623  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:623 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:623 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:623 1044 1f0 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:12:38:654 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:654  600 260 DtaStor Created new ESE session
    2010-04-14 06:12:38:654  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:654  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:12:38:654  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:12:38:654  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:654  600 260 DtaStor Transaction begun. sesid 025A03C0. Nesting: 0
    2010-04-14 06:12:38:654  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction commited. sesid: 025A03C0. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:686 1044 1f0 Agent DeleteVolatileServices::GetServiceList returned 2 services.
    2010-04-14 06:12:38:686 1044 1f0 Agent Client Call Recorder finished delayed initialization
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:686 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:686  600 260 DtaStor Attempting to open table tbDownloadJob
    2010-04-14 06:12:38:686  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:686 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:686 1044 1f0 Service new event 2 of type 2 added to event system
    2010-04-14 06:12:38:702 1044 1f0 DnldMgr DownloadManager SecsInADay = 86400.
    2010-04-14 06:12:38:702 1044 1f0 Service new event 3 of type 1 added to event system
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Loading pending event groups.
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Using callback event expiration age: 1209600
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Inited pending event handler with 0 groups, 0 pending polled events, and 0 pending callback events.
    2010-04-14 06:12:38:718 1044 1f0 Service Signal subscription event 19
    2010-04-14 06:12:38:718 1044 1f0 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:12:38:718 1044 1f0 AU AU setting next sqm report timeout to 2010-04-14 13:12:38
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:734  600 260 DtaStor Retrieved existing ESE session
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:12:38:734  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:12:38:734  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction begun. sesid 025A03C0. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction commited. sesid: 025A03C0. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:734 1044 1f0 AU   # WSUS server:http://wsus01
    2010-04-14 06:12:38:734 1044 1f0 AU   # Detection frequency: 22
    2010-04-14 06:12:38:734 1044 1f0 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:12:38:734 1044 1f0 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:12:38:734 1044 1f0 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:12:38:734 1044 1f0 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 3 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 5 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 4 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 6 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:734 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor Attempting to open table tbAUState
    2010-04-14 06:12:38:734  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:734 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:734 1044 1f0 AU **************Dumping AU Update Manager*****************
    2010-04-14 06:12:38:734 1044 1f0 AU Number of updates for list 0: 0
    2010-04-14 06:12:38:734 1044 1f0 AU ********************************************************
    2010-04-14 06:12:38:734 1044 1f0 AU Number of updates for list 1: 0
    2010-04-14 06:12:38:734 1044 1f0 AU ********************************************************
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 11 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 12 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 15 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 16 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 AU No pending calls to reconnect
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 17 with internalrouting 2
    2010-04-14 06:12:38:750 1044 1f0 AU Setting the Reschedule timeout
    2010-04-14 06:12:38:750 1044 1f0 Service new event 31 of type 1 added to event system
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 AU Nonexclusive updates: total=0, have high-pri=FALSE, have important=FALSE, have recommended=FALSE, have optional=FALSE
    2010-04-14 06:12:38:750 1044 1f0 AU Exclusive updates: high-pri=0, important=0, recommended=0, optional=0
    2010-04-14 06:12:38:750 1044 1f0 AU Ignore download status while finding the first update group
    2010-04-14 06:12:38:750 1044 1f0 AU Initializing featured updates
    2010-04-14 06:12:38:750 1044 1f0 AU Found 0 cached featured updates
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 14 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 13 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 20 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 7 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 AU AU class object already registered, no need to do it again
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:750 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:750  600 260 DtaStor Section 6 locked by session 000C0728 (thread: 608)
    2010-04-14 06:12:38:750  600 260 DtaStor Attempting to open table tbAUState
    2010-04-14 06:12:38:750  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:750  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:750  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:750  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:750  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:750  600 260 DtaStor Section 6 unlocked by session 000C0728 (thread: 608)
    2010-04-14 06:12:38:750 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:750 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:750 1044 1f0 Service new event 27 of type 1 added to event system
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 7 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 AU AU finished delayed initialization
    2010-04-14 06:12:38:750 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:750 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:38:750 1044 1f0 Report CEventQueue received eventing system event: 3
    2010-04-14 06:12:38:750 1044 1f0 Report Not detaching: buffer empty.
    2010-04-14 06:12:38:750 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:38:750 1044 1f0 Report Network connection detected.
    2010-04-14 06:12:38:750 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:750 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:38:750 1044 1f0 Report CEventQueue received eventing system event: 3
    2010-04-14 06:12:38:750 1044 1f0 Report Not detaching: buffer empty.
    2010-04-14 06:12:38:750 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:38:766 1044 1f0 Report Network connection detected.
    2010-04-14 06:12:38:766 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:766 1044 1f0 Agent ClientId will be hardware-verified.
    2010-04-14 06:12:38:766 1044 1f0 Agent Found NIC: 00:0b:...
    2010-04-14 06:12:39:512 1044 1f0 Agent System Drive: C:
    2010-04-14 06:12:39:544 1044 1f0 Agent System Disk: 0
    2010-04-14 06:12:40:005 1044 1f0 Agent Serial Number:       VNVC02G3DAMMWT
    2010-04-14 06:12:40:037 1044 1f0 Agent Enclosure Serial Number: JJW6J31
    2010-04-14 06:12:40:052 1044 1f0 Agent MB Serial Number: ..CN7082137JJ05P.
    2010-04-14 06:12:40:052 1044 1f0 Agent Hardware is identical.
    2010-04-14 06:12:40:052 1044 1f0 Agent Drive Matches.
    2010-04-14 06:12:40:052 1044 1f0 Agent Hardware is NOT a new machine.
    Continued...

    Part 2:
    2010-04-14 06:12:40:068 1044 1f0 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:12:40:068 1044 1f0 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:12:40:307 1044 1f0 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:12:40:307 1044 1f0 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:12:40:338 1044 1f0 Report   * Bios Revision = A05
    2010-04-14 06:12:40:338 1044 1f0 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:12:40:354 1044 1f0 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:12:40:354 1044 1f0 Report   * Locale ID = 1033
    2010-04-14 06:12:40:354 1044 1f0 Misc Obtaining WSUS binary version numbers:
    2010-04-14 06:12:40:450 1044 1f0 Misc    ClientVersion: wuapi.dll = 7.4.7600.226
    2010-04-14 06:12:40:450 1044 1f0 Misc    ClientVersion: wuauclt.exe = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuaucpl.cpl = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuaueng.dll = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuauserv.dll = 5.4.3790.5512
    2010-04-14 06:12:40:656 1044 1f0 Misc    ClientVersion: wucltui.dll = 7.4.7600.226
    2010-04-14 06:12:40:656 1044 1f0 Report BuildEvent() succeeded.
    2010-04-14 06:12:40:656 1044 1f0 Report *****Dumping event {1AFBB8E2-43BF-43E1-94C1-630A7B654DD8}:
    2010-04-14 06:12:40:656 1044 1f0 Report  EventId 252, Source Id 101, Caller Windows Update Agent:
    2010-04-14 06:12:40:656 1044 1f0 Report  Replacement strings: 0
    2010-04-14 06:12:40:656 1044 1f0 Report  Misc data strings: 7
    2010-04-14 06:12:40:656 1044 1f0 Report   Q=1
    2010-04-14 06:12:40:656 1044 1f0 Report   m=4
    2010-04-14 06:12:40:656 1044 1f0 Report   n=0
    2010-04-14 06:12:40:656 1044 1f0 Report   G=7.4.7600.226
    2010-04-14 06:12:40:656 1044 1f0 Report   J=800
    2010-04-14 06:12:40:656 1044 1f0 Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:12:40:656 1044 1f0 Report   L=2003-12-02T00:00:00
    2010-04-14 06:12:40:656 1044 1f0 Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:12:40:656 1044 1f0 Service new event 20 of type 1 added to event system
    2010-04-14 06:12:40:656 1044 1f0 Report Not detaching: thresholds not met. (Size = 1)
    2010-04-14 06:12:40:656 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:40:656 1044 1f0 Report ReportEvent() succeeded.
    2010-04-14 06:12:40:656 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:40:656 1044 1f0 Agent add custom handle 0xb58 to event system
    2010-04-14 06:12:40:656 1044 1f0 Service new event 7 of type 0 added to event system
    2010-04-14 06:12:40:656 1044 1f0 Agent successfully obtain work item type 0
    2010-04-14 06:12:40:656 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:12:40:656 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:12:40:672 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting update metadata cache purge; currently 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Finished update metadata cache purge; now 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting locked revision cache purge; currently 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Finished locked revision cache purge; now 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:40:672 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:40:672 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting garbage collection for files.
    2010-04-14 06:12:40:672  600 260 DtaStor Attempting to open table tbFiles
    2010-04-14 06:12:40:672  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:40:672  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:40:672  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:40:704  600 260 DtaStor No expired files found
    2010-04-14 06:12:40:704  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:40:704  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:40:704 1044 3dc DnldMgr Found 0 expired files to delete.
    2010-04-14 06:12:40:704 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:40:704 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:40:704 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:704 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:704 1044 3dc DnldMgr Starting garbage collection for updates.
    2010-04-14 06:12:40:704  600 260 DtaStor Attempting to open table tbUpdates
    2010-04-14 06:12:40:704  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:40:704  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:40:704  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:41:673  600 260 DtaStor No expired updates found
    2010-04-14 06:12:41:673  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:41:673  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:41:673 1044 3dc DnldMgr Found 0 expired updates to delete.
    2010-04-14 06:12:41:673 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:41:673 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:41:673 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:41:689 1044 1f0 Agent One work item is available
    2010-04-14 06:12:41:689 1044 1f0 Agent work item of type 0 is available
    2010-04-14 06:12:41:689 1044 1f0 Service custom handle 0xb58 removed from event system successfully
    2010-04-14 06:12:41:689 1044 1f0 Service Wait object starts waiting with timeout 3967 msecs
    2010-04-14 06:12:45:724 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:724 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:45:724 1044 1f0 Report CEventQueue received eventing system event: 1
    2010-04-14 06:12:45:724 1044 1f0 Report Detaching: timestamp old.
    2010-04-14 06:12:45:724 1044 1f0 Report Flushing: read buffers available.
    2010-04-14 06:12:45:724 1044 1f0 Report Submitting work item thread request.
    2010-04-14 06:12:45:724 1044 1f0 Service new event 19 of type 2 added to event system
    2010-04-14 06:12:45:724 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:724 1044 1f0 Agent add custom handle 0xb58 to event system
    2010-04-14 06:12:45:724 1044 1f0 Service new event 7 of type 0 added to event system
    2010-04-14 06:12:45:724 1044 3dc Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:12:45:724 1044 3dc Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:12:45:724 1044 3dc Report Dispatching events inCEventDispatcher@01C14370.
    2010-04-14 06:12:45:724 1044 3dc Report CLocalEventLogWriter: Handling 1 events.
    2010-04-14 06:12:45:724 1044 3dc Report CLocalEventLogWriter finishing event handling. (00000000)
    2010-04-14 06:12:45:724 1044 3dc Report WARNING: Got attempt to log unexpected event ID 252 to the NT event log.
    2010-04-14 06:12:45:724 1044 3dc Report Filtering 1 events inCEventFilter@01C14F38.
    2010-04-14 06:12:45:724 1044 1f0 Agent successfully obtain work item type 0
    2010-04-14 06:12:45:724 1044 1f0 Service Wait object starts waiting with timeout 1755103 msecs
    2010-04-14 06:12:45:724 1044 1f0 Service Wait object starts waiting with timeout 1755103 msecs
    2010-04-14 06:12:45:724 1044 3dc Report Event failed sampling filter.
    2010-04-14 06:12:45:740 1044 3dc Report Filtered down to 0 events.
    2010-04-14 06:12:45:740 1044 3dc Report Filtering 0 events inCEventFilter@01C14F0C.
    2010-04-14 06:12:45:740 1044 3dc Report Filtered down to 0 events.
    2010-04-14 06:12:45:740 1044 3dc Report Done with asynchronous flush.
    2010-04-14 06:12:45:756 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:756 1044 1f0 Agent One work item is available
    2010-04-14 06:12:45:756 1044 1f0 Agent work item of type 0 is available
    2010-04-14 06:12:45:756 1044 1f0 Service custom handle 0xb58 removed from event system successfully
    2010-04-14 06:12:45:756 1044 1f0 Service Wait object starts waiting with timeout 1755071 msecs
    2010-04-14 06:16:57:610 1044 3e0 DtaStor Shutdown timer fired.  Releasing store objects.
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 2
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 1
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 0
    2010-04-14 06:16:57:610  600 260 DtaStor Out of proc datastore is shutting down
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastoreWrap QI: unsupported interface requested
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastoreWrap QI: IUnknown
    2010-04-14 06:16:57:816  600 260 DtaStor SUS client data store uninitialized
    2010-04-14 06:16:58:833  600 260 DtaStor Out of proc datastore is now inactive
    2010-04-14 06:16:58:865  600 260 AUClnt wuauclt.exe is exiting with code 0x00000000
    2010-04-14 06:20:46:274 1044 418 Service Service received connect notification
    2010-04-14 06:20:46:274 1044 418 Service Signal subscription event 5
    2010-04-14 06:20:46:274 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:20:46:274 1044 1f0 Service Event system dispatch events
    2010-04-14 06:20:46:274 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:20:46:274 1044 1f0 Service Wait object starts waiting with timeout 1274553 msecs
    2010-04-14 06:20:48:632 1044 418 Service Service received logon notification
    2010-04-14 06:20:48:632 1044 418 Service Signal subscription event 3
    2010-04-14 06:20:48:632 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:20:48:632 1044 1f0 Service Event system dispatch events
    2010-04-14 06:20:48:632 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:20:48:632 1044 1f0 Service Wait object starts waiting with timeout 1272195 msecs
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 3
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 4
    2010-04-14 06:36:38:128 1044 340 AU Release: refcount is 3
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 4
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 5
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 6
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 7
    2010-04-14 06:36:38:128 1044 340 AU Release: refcount is 6
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 7
    2010-04-14 06:36:38:144 1044 340 AU AddRef: refcount is 8
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 7
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 6
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 5
    2010-04-14 06:36:38:144 1044 340 Service GetSessionIdFromToken returned sessionId 0
    2010-04-14 06:36:38:144 1044 340 Agent Access is granted
    2010-04-14 06:36:38:144 1044 340 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:38:144 1044 340 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:38:144 1044 340 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:38:144 1044 340 AU Nonexclusive updates: total=0, have high-pri=FALSE, have important=FALSE, have recommended=FALSE, have optional=FALSE
    2010-04-14 06:36:38:159 1044 340 AU Exclusive updates: high-pri=0, important=0, recommended=0, optional=0
    2010-04-14 06:36:38:159 1044 340 AU Ignore download status while finding the first update group
    2010-04-14 06:36:38:159 1044 340 AU AU found 0 updates for install at shutdown
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 4
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 3
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 2
    2010-04-14 06:36:38:159  488 10c Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:36:38:159  488 10c Misc   = Process: C:\WINDOWS\Explorer.EXE
    2010-04-14 06:36:38:159  488 10c Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:36:38:159  488 10c Shutdwn Install at shutdown: no updates to install
    2010-04-14 06:36:44:989 1044 418 Service Service received logoff notification
    2010-04-14 06:36:44:989 1044 418 Service Signal subscription event 4
    2010-04-14 06:36:44:989 1044 418 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:36:44:989 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:36:44:989 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:44:989 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:44:989 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:36:44:989 1044 1f0 Agent Access is granted
    2010-04-14 06:36:44:989 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:44:989 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:44:989 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:44:989 1044 1f0 Service Wait object starts waiting with timeout 315838 msecs
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 3
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 4
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 3
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 4
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 5
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 8
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 5
    2010-04-14 06:36:49:381 1044 93c Agent Access is granted
    2010-04-14 06:36:49:381 1044 93c Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:49:381 1044 93c Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:49:381 1044 93c Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:49:381 1044 93c AU Pausing AU through Pause api. Pause count = 1
    2010-04-14 06:36:49:381 1044 93c AU Asking all AU clients to shut down
    2010-04-14 06:36:49:381 1044 93c Service new event 14 of type 1 added to event system
    2010-04-14 06:36:49:381 1044 93c Report BuildEvent() succeeded.
    2010-04-14 06:36:49:381 1044 93c Report *****Dumping event {046C1C42-1470-4C93-9F2F-7A096D91B8FD}:
    2010-04-14 06:36:49:381 1044 93c Report  EventId 241, Source Id 102, Caller AutomaticUpdates:
    2010-04-14 06:36:49:381 1044 93c Report  Replacement strings: 0
    2010-04-14 06:36:49:381 1044 93c Report  Misc data strings: 7
    2010-04-14 06:36:49:381 1044 93c Report   Q=1
    2010-04-14 06:36:49:396 1044 93c Report   m=4
    2010-04-14 06:36:49:396 1044 93c Report   n=0
    2010-04-14 06:36:49:396 1044 93c Report   G=7.4.7600.226
    2010-04-14 06:36:49:396 1044 93c Report   J=800
    2010-04-14 06:36:49:396 1044 93c Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:36:49:396 1044 93c Report   L=2003-12-02T00:00:00
    2010-04-14 06:36:49:396 1044 93c Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:36:49:396 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:36:49:396 1044 93c Service new event 20 of type 1 added to event system
    2010-04-14 06:36:49:396 1044 93c Report Not detaching: thresholds not met. (Size = 1)
    2010-04-14 06:36:49:396 1044 93c Report Not flushing: no read buffers available.
    2010-04-14 06:36:49:396 1044 93c Report ReportEvent() succeeded.
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 4
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 3
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 2
    2010-04-14 06:36:52:084 1044 418 Service Service received SERVICE_CONTROL_SHUTDOWN control
    2010-04-14 06:36:52:084 1044 418 Service updated service status to 3
    2010-04-14 06:36:52:084 1044 418 Service Signal subscription event 1
    2010-04-14 06:36:52:084 1044 418 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:36:52:084 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:52:084 1044 1f0 Report BuildEvent() succeeded.
    2010-04-14 06:36:52:084 1044 1f0 Report *****Dumping event {0B3EAB3C-1D28-4DCE-93BC-E709360BC09C}:
    2010-04-14 06:36:52:100 1044 1f0 Report  EventId 254, Source Id 101, Caller Windows Update Agent:
    2010-04-14 06:36:52:100 1044 1f0 Report  Replacement strings: 0
    2010-04-14 06:36:52:100 1044 1f0 Report  Misc data strings: 7
    2010-04-14 06:36:52:100 1044 1f0 Report   Q=1
    2010-04-14 06:36:52:100 1044 1f0 Report   m=4
    2010-04-14 06:36:52:100 1044 1f0 Report   n=0
    2010-04-14 06:36:52:100 1044 1f0 Report   G=7.4.7600.226
    2010-04-14 06:36:52:100 1044 1f0 Report   J=800
    2010-04-14 06:36:52:100 1044 1f0 Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:36:52:100 1044 1f0 Report   L=2003-12-02T00:00:00
    2010-04-14 06:36:52:100 1044 1f0 Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:36:52:100 1044 1f0 Report Not detaching: thresholds not met. (Size = 2)
    2010-04-14 06:36:52:100 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:36:52:100 1044 1f0 Report ReportEvent() succeeded.
    2010-04-14 06:36:52:100 1044 1f0 Service Exiting Service Main
    2010-04-14 06:36:52:100 1044 1f0 Service updated service status to 3
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 3
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU Asking all AU clients to shut down
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 14 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 7 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 13 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 20 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 17 and internalrouting 2
    2010-04-14 06:36:52:178 1044 1f0 Service event 31 of type 1 removed from event system
    2010-04-14 06:36:52:241 1044 1f0 Agent Access is granted
    2010-04-14 06:36:52:241 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:52:241 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:52:241 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 8 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 11 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 12 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 15 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 16 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service event 27 of type 1 removed from event system
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 3 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 5 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 4 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 6 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 8 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 DtaStor Timer queue timer was deleted
    2010-04-14 06:36:52:241 1044 1f0 DtaStor FATAL: DS: 0x80040154: Failed to CoCreate datastore
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Attempt 0 to CoCreate the datastore succeeded
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Session caching is enabled
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:36:53:319 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:36:53:319 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Created timer queue timer with delay 300 sec
    2010-04-14 06:36:53:319 1044 1f0 AU **************Dumping AU Update Manager*****************
    2010-04-14 06:36:53:319 1044 1f0 AU Number of updates for list 0: 0
    2010-04-14 06:36:53:319 1044 1f0 AU ********************************************************
    2010-04-14 06:36:53:319 1044 1f0 AU Number of updates for list 1: 0
    2010-04-14 06:36:53:319 1044 1f0 AU ********************************************************
    2010-04-14 06:36:53:319 1044 1f0 Service destination 1 removes event subscription 18 and internalrouting 5
    2010-04-14 06:36:53:334 1044 1f0 Service event 14 of type 1 removed from event system
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 2
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr AddRef: ref count -> 2
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Release: ref count -> 1
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Release: ref count -> 0
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Waiting for m_hSafeToDeleteEvent
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr DH Listener Release: ref count -> 0
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr DH Listener waiting for m_hSafeToDeleteEvent
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after AddRef is 3
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 2
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 1
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after AddRef is 2
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 1
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client waiting for active callers to leave
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client releasing client references
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client waiting for reference count to reset
    2010-04-14 06:36:53:350 1044 1f0 Service event 3 of type 1 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CSubExpressionHandler::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CEEMsiHandler::Release: refcount is 1
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CEEMsiHandler::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 Handler CUHHandlerBase::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 Service destination 2 removes event subscription 8 and internalrouting 0
    2010-04-14 06:36:53:366 1044 1f0 Service destination 2 removes event subscription 9 and internalrouting 0
    2010-04-14 06:36:53:366 1044 1f0 Report Submitting work item thread request.
    2010-04-14 06:36:53:366 1044 1f0 Service new event 19 of type 2 added to event system
    2010-04-14 06:36:53:366 1044 1f0 Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:36:53:366 1044 1f0 Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:36:53:366 1044 1f0 Report Dispatching events inCEventDispatcher@01C14370.
    2010-04-14 06:36:53:366 1044 1f0 Report CLocalEventLogWriter: Handling 2 events.
    2010-04-14 06:36:53:366 1044 1f0 Report CLocalEventLogWriter finishing event handling. (00000000)
    2010-04-14 06:36:53:366 1044 1f0 Report WARNING: Got attempt to log unexpected event ID 241 to the NT event log.
    2010-04-14 06:36:53:366 1044 1f0 Report WARNING: Got attempt to log unexpected event ID 254 to the NT event log.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtering 2 events inCEventFilter@01C14F38.
    2010-04-14 06:36:53:366 1044 1f0 Report Event failed sampling filter.
    2010-04-14 06:36:53:366 1044 1f0 Report Event failed sampling filter.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtered down to 0 events.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtering 0 events inCEventFilter@01C14F0C.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtered down to 0 events.
    2010-04-14 06:36:53:366 1044 1f0 Report Done with asynchronous flush.
    2010-04-14 06:36:53:366 1044 1f0 Service event 20 of type 1 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 Service event 19 of type 2 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 DtaStor Timer queue timer was deleted
    2010-04-14 06:36:53:459 1044 1f0 Service *********
    2010-04-14 06:36:53:459 1044 1f0 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 06:36:53:459 1044 1f0 Service *************
    2010-04-14 06:38:02:437 1040 1e4 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:38:02:906 1040 1e4 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:38:02:906 1040 1e4 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:38:02:437 1040 1e4 Service *************
    2010-04-14 06:38:02:953 1040 1e4 Service ** START **  Service: Service startup
    2010-04-14 06:38:02:953 1040 1e4 Service *********
    2010-04-14 06:38:03:046 1040 1e4 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:38:03:046 1040 1e4 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:38:03:046 1040 1e4 Agent   * Access type: No proxy
    2010-04-14 06:38:03:109 1040 1e4 Agent   * Network state: Connected
    2010-04-14 06:38:54:624 1040 1e4 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:38:54:704 1040 1e4 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:38:54:704 1040 1e4 Agent   * WSUS server:http://wsus01
    2010-04-14 06:38:54:704 1040 1e4 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:38:54:704 1040 1e4 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:38:54:704 1040 1e4 Agent   * Windows Update access disabled: No
    2010-04-14 06:38:54:990 1040 1e4 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:39:05:825 1040 1e4 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:39:06:350 1040 1e4 AU AU setting next sqm report timeout to 2010-04-14 13:39:06
    2010-04-14 06:39:06:652 1040 1e4 AU   # WSUS server:http://wsus01
    2010-04-14 06:39:06:668 1040 1e4 AU   # Detection frequency: 22
    2010-04-14 06:39:06:668 1040 1e4 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:39:06:668 1040 1e4 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:39:06:668 1040 1e4 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:39:06:668 1040 1e4 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:39:07:541 1040 1e4 AU Initializing featured updates
    2010-04-14 06:39:07:573 1040 1e4 AU Found 0 cached featured updates
    2010-04-14 06:39:07:764 1040 1e4 AU AU finished delayed initialization
    2010-04-14 06:39:14:866 1040 1e4 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:39:14:866 1040 1e4 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:39:14:929 1040 1e4 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:39:14:929 1040 1e4 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:39:15:136 1040 1e4 Report   * Bios Revision = A05
    2010-04-14 06:39:15:136 1040 1e4 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:39:15:199 1040 1e4 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:39:15:199 1040 1e4 Report   * Locale ID = 1033
    2010-04-14 07:08:19:650 1040 1e4 AU Forced install timer expired for scheduled install
    2010-04-14 07:08:19:697 1040 1e4 AU UpdateDownloadProperties: 0 download(s) are still in progress.
    2010-04-14 07:08:19:697 1040 1e4 AU Setting AU scheduled install time to 2010-04-15 10:00:00
    2010-04-14 08:34:26:942 1040 1e4 AU AU received policy change subscription event
    2010-04-14 10:25:36:023 1040 1e4 AU AU received policy change subscription event
    2010-04-14 11:10:10:013 1040 1e4 AU #############
    2010-04-14 11:10:10:013 1040 1e4 AU ## START ##  AU: Search for updates
    2010-04-14 11:10:10:028 1040 1e4 AU #########
    2010-04-14 11:10:10:044 1040 1e4 AU <<## SUBMITTED ## AU: Search for updates [CallId = {2B72F721-395A-414B-A26E-DE5B982BE399}]
    2010-04-14 11:10:10:044 1040 1344 Agent *************
    2010-04-14 11:10:10:044 1040 1344 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 11:10:10:044 1040 1344 Agent *********
    2010-04-14 11:10:10:044 1040 1344 Agent   * Online = Yes; Ignore download priority = No
    2010-04-14 11:10:10:044 1040 1344 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2010-04-14 11:10:10:044 1040 1344 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-14 11:10:10:044 1040 1344 Agent   * Search Scope = {Machine}
    2010-04-14 11:10:11:466 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 11:10:11:653 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:11:825 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 11:10:11:841 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:11:997 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2010-04-14 11:10:12:013 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:12:028 1040 1344 Setup ***********  Setup: Checking whether self-update is required  ***********
    2010-04-14 11:10:12:028 1040 1344 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2010-04-14 11:10:12:075 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:185 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:247 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:247 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:372 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:403 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:403 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:419 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:513 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:591 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:606 1040 1344 Setup   * IsUpdateRequired = No
    2010-04-14 11:10:19:466 1040 1344 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2010-04-14 11:10:19:497 1040 1344 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 11:10:22:685 1040 1344 PT WARNING: Cached cookie has expired or new PID is available
    2010-04-14 11:10:22:685 1040 1344 PT Initializing simple targeting cookie, clientId = 8fba4725-278a-4588-b0cb-713b711911d5, target group = , DNS name = client100.domain.com
    2010-04-14 11:10:22:685 1040 1344 PT   Server URL =http://wsus01/SimpleAuthWebService/SimpleAuth.asmx
    2010-04-14 11:10:23:044 1040 1344 Agent WARNING: Failed to evaluate Installed rule, updateId = {BFE5B177-A086-47A0-B102-097E4FA1F807}.102, hr = 8024E001
    2010-04-14 11:20:08:158 1040 1344 PT +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2010-04-14 11:20:08:783 1040 1344 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 12:16:30:246 1040 1e4 AU AU received policy change subscription event
    2010-04-14 13:57:17:634 1040 1e4 AU AU received policy change subscription event
    2010-04-14 14:43:29:227 1040 1344 Agent   * WARNING: Failed to filter search results, error = 0x8024000B
    2010-04-14 14:43:29:274 1040 1e4 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 14:43:29:290 1040 1344 Agent *********
    2010-04-14 14:43:29:290 1040 1344 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 14:43:29:290 1040 1344 Agent *************
    2010-04-14 14:43:31:977 1040 1e4 Service *********
    2010-04-14 14:43:31:977 1040 1e4 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 14:43:31:977 1040 1e4 Service *************

  • Service template problem - Unable to perform the job because one or more of the selected objects are locked by another job - ID 2606

    Hello,
    I’ve finally managed to deploy my first guest cluster with a shared VHDX using a service template. 
    So, I now want to try and update my service template.  However, whenever I try to do anything with it, in the services section, I receive the error:
    Unable to perform the job because one or more of the selected objects are locked by another job.  To find out which job is locking the object, in the jobs view, group by status, and find the running or cancelling job for the object.  ID 2606
    Well I tried that and there doesn’t seem to be a job locking the object.  Both the cluster nodes appear to be up and running, and I can’t see a problem with it at all.  I tried running the following query in SQL:
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    but all this gives me is an error that says - conversion failed when converting from a character string to uniqueidentifier msg 8169, level 16, State 2, Line 1
    I'm no SQL expert as you can probably tell, but I'd prefer not to deploy another service template in case this issue occurs again.
    Can anyone help?

    No one else had this?

  • Getting error Unable to perform transaction on the record.

    Hi,
    My requirement is to implement the custom attachment, and to store the data into custom lob table.
    my custom table structure is similer to that of standard fnd_lobs table and have inserted the data through EO based VO.
    Structure of custom table
    CREATE TABLE XXAPL.XXAPL_LOBS
    ATTACHMENT_ID NUMBER NOT NULL,
    FILE_NAME VARCHAR2(256 BYTE),
    FILE_CONTENT_TYPE VARCHAR2(256 BYTE) NOT NULL,
    FILE_DATA BLOB,
    UPLOAD_DATE DATE,
    EXPIRATION_DATE DATE,
    PROGRAM_NAME VARCHAR2(32 BYTE),
    PROGRAM_TAG VARCHAR2(32 BYTE),
    LANGUAGE VARCHAR2(4 BYTE) DEFAULT ( userenv ( 'LANG') ),
    ORACLE_CHARSET VARCHAR2(30 BYTE) DEFAULT ( substr ( userenv ( 'LANGUAGE') , instr ( userenv ( 'LANGUAGE') , '.') +1 ) ),
    FILE_FORMAT VARCHAR2(10 BYTE) NOT NULL
    i have created a simple messegefileupload and submit button on my custom page and written below code on CO:
    Process Request Code:
    if(!pageContext.isBackNavigationFired(false))
    TransactionUnitHelper.startTransactionUnit(pageContext, "AttachmentCreateTxn");
    if(!pageContext.isFormSubmission()){
    System.out.println("In ProcessRequest of AplAttachmentCO");
    am.invokeMethod("initAplAttachment");
    else
    if(!TransactionUnitHelper.isTransactionUnitInProgress(pageContext, "AttachmentCreateTxn", true))
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    ProcessFormRequest Code:
    if (pageContext.getParameter("Upload") != null)
    DataObject fileUploadData = (DataObject)pageContext.getNamedDataObject("FileItem");
    String strFileName = null;
    strFileName = pageContext.getParameter("FileItem");
    if(strFileName == null || "".equals(strFileName))
    throw new OAException("Please select a File for upload");
    fileName = strFileName;
    contentType = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");
    BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, fileName);
    String strItemDescr = pageContext.getParameter("ItemDesc");
    OAFormValueBean bean = (OAFormValueBean)webBean.findIndexedChildRecursive("AttachmentId");
    String strAttachId = (String)bean.getValue(pageContext);
    System.out.println("Attachment Id:" +strAttachId);
    int aInt = Integer.parseInt(strAttachId);
    Number numAttachId = new Number(aInt);
    Serializable[] methodParams = {fileName, contentType , uploadedByteStream , strItemDescr , numAttachId};
    Class[] methodParamTypes = {fileName.getClass(), contentType.getClass() , uploadedByteStream.getClass() , strItemDescr.getClass() , numAttachId.getClass()};
    am.invokeMethod("setUploadFileRowData", methodParams, methodParamTypes);
    am.invokeMethod("apply");
    System.out.println("Records committed in lobs table");
    if (pageContext.getParameter("AddAnother") != null)
    pageContext.forwardImmediatelyToCurrentPage(null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    if (pageContext.getParameter("cancel") != null)
    am.invokeMethod("rollbackShipment");
    TransactionUnitHelper.endTransactionUnit(pageContext, "AttachmentCreateTxn");
    Code in AM:
    public void apply(){
    getTransaction().commit();
    public void initAplAttachment() {
    OAViewObject lobsvo = (OAViewObject)getAplLobsAttachVO1();
    if (!lobsvo.isPreparedForExecution())
    lobsvo.executeQuery();
    Row row = lobsvo.createRow();
    lobsvo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    public void setUploadFileRowData(String fName, String fContentType, BlobDomain fileData , String fItemDescr , Number fAttachId)
    AplLobsAttachVOImpl VOImpl = (AplLobsAttachVOImpl)getAplLobsAttachVO1();
    System.out.println("In setUploadFileRowData method");
    System.out.println("In setUploadFileRowData method fAttachId: "+fAttachId);
    System.out.println("In setUploadFileRowData method fName: "+fName);
    System.out.println("In setUploadFileRowData method fContentType: "+fContentType);
    RowSetIterator rowIter = VOImpl.createRowSetIterator("rowIter");
    while (rowIter.hasNext())
    AplLobsAttachVORowImpl viewRow = (AplLobsAttachVORowImpl)rowIter.next();
    viewRow.setFileContentType(fContentType);
    viewRow.setFileData(fileData);
    viewRow.setFileFormat("IGNORE");
    viewRow.setFileName(fName);
    rowIter.closeRowSetIterator();
    System.out.println("setting on fndlobs done");
    The attchemnt id is the sequence generated number, and its defaulting logic is written in EO
    public void create(AttributeList attributeList) {
    super.create(attributeList);
    OADBTransaction transaction = getOADBTransaction();
    Number attachmentId = transaction.getSequenceValue("xxapl_po_ship_attch_s");
    setAttachmentId(attachmentId);
    public void setAttachmentId(Number value) {
    System.out.println("In ShipmentsEOImpl value::"+value);
    if (getAttachmentId() != null)
    System.out.println("In AplLobsAttachEOImpl AttachmentId::"+(Number)getAttachmentId());
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "AttachmentId", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_EMP_ID_NO_UPDATE"); // Message name
    if (value != null)
    // Attachment ID must be unique. To verify this, you must check both the
    // entity cache and the database. In this case, it's appropriate
    // to use findByPrimaryKey() because you're unlikely to get a match, and
    // and are therefore unlikely to pull a bunch of large objects into memory.
    // Note that findByPrimaryKey() is guaranteed to check all AplLobsAttachment.
    // First it checks the entity cache, then it checks the database.
    OADBTransaction transaction = getOADBTransaction();
    Object[] attachmentKey = {value};
    EntityDefImpl attachDefinition = AplLobsAttachEOImpl.getDefinitionObject();
    AplLobsAttachEOImpl attachment =
    (AplLobsAttachEOImpl)attachDefinition.findByPrimaryKey(transaction, new Key(attachmentKey));
    if (attachment != null)
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "AttachmentId", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_EMP_ID_UNIQUE"); // Message name
    setAttributeInternal(ATTACHMENTID, value);
    Issue faced:
    When i run the page for the first time data gets inserted into custom table perfectly on clicking upload button,
    but when clicked on add another button on the same page (which basically redirects to the same upload page and increments the attachment id by 1)
    i am getting the below error:
    Error
    Unable to perform transaction on the record.
    Cause: The record contains stale data. The record has been modified by another user.
    Action: Cancel the transaction and re-query the record to get the new data.
    Have spent entire day to resolve this issue but no luck.
    Any help on this will be appreciated, let me know if i am going wrong anywhere.
    Thanks nd Regards
    Avinash

    Hi,
    After, inserting the values please re-execute the VO query.
    Also, try to redirect the page with no AM retension
    Thanks,
    Gaurav

  • Frm-40505:ORACLE error: unable to perform query in oracle forms 10g

    Hi,
    I get error frm-40505:ORACLE error: unable to perform query on oracle form in 10g environment, but the same form works properly in 6i.
    Please let me know what do i need to do to correct this problem.
    Regards,
    Priya

    Hi everyone,
    I have block created on view V_LE_USID_1L (which gives the error frm-40505) . We don't need any updation on this block, so the property 'updateallowed' is set to 'NO'.
    To fix this error I modified 'Keymode' property, set it to 'updatable' from 'automatic'. This change solved the problem with frm-40505 but it leads one more problem.
    The datablock v_le_usid_1l allows user to enter the text (i.e. updated the field), when the data is saved, no message is shown. When the data is refreshed on the screen, the change done previously on the block will not be seen (this is because the block updateallowed is set to NO), how do we stop the fields of the block being editable?
    We don't want to go ahead with this solution as, we might find several similar screens nad its diff to modify each one of them individually. When they work properly in 6i, what it doesn't in 10g? does it require any registry setting?
    Regards,
    Priya

  • I want to use a mac mini as a server supporting storage. Can I pair my macair to it for when I need to perform updates and maintenance ?

    I want to use a mac mini as a server supporting storage. I have other devices such as an iMac and iPad that will access information from the server. I do not want to purchase a monitor and keyboard as the unit will sit in a cupboard out of sight. Can I pair my macair to it for when I need to perform updates and maintenance ?

    I have a 2010 Mac Mini running Yosemite and Server which I use
    as a headless home server.
    I have is set up to allow screen sharing and can connect to it and
    control it with my iMac, Macbook Pro, iPhone, and a 2011 Mini Server
    that I use as an HTPC.
    You can check this out for all the Yosemite Server capabilities:
    https://help.apple.com/advancedserveradmin/mac/4.0/
    I have iTunes Home Sharing set up on it and have my entire iTunes
    library on it.  I can then use any of my Macs to play Movies or Songs
    from it and only keep locally a select subset of that on my individual
    devices.
    Rather than and update server, I utilize Server's Caching Service.  The caching
    server will duplicate any update download (system or MacApp Store purchases)
    any time a device that is connected to my network down loads one.  The update will
    then be stored locally and all other devices will download the update from it which
    can be faster than from Apple directly.  This has the advantage of only having to download
    once with limited bandwidth internet connections.  There is also an Update Server service
    available, but it is some what more involved in setting up.  However, it will download
    and store all available updates.
    There is another thing as well if you do not care for syncing things like Contacts, Calendar, etc.
    to iCloud, you can set Server up to sync these items across devices locally.

Maybe you are looking for

  • ORDER BY for alphanumeric

    I need an 'ORDER BY' that sorts this format ABC-1001 ABC-200 so that it sorts like this: ABC-200 ABC-1001 Here's a script that works:   SELECT ItemNumber,   (SELECT SUBSTRING(Items.[ItemNumber],1,CHARINDEX('-',Items.[ItemNumber],1)-1 ))  as ItemNumbe

  • Adding or deleating unneeded lines from a fillable form

    I am attempting to create a form that will request employee information to attend training (basically a four column, one line table for each) .  Depending on the training, there could be from 5 to 50 employees attending.  Is there a way to add/delete

  • How do I find out which (if any) albums contain a specific photo?

    In iPhoto and Aperture, if I search for a photo, it shows me which album the photo is in.  In Photos for Mac, it only gives me the option to "Show Moment".  Is there any way to see whether a specific photo is contained in any albums?  Thanks!

  • How to change my apple ID in iPad?

    how to change my apple ID in iPad?

  • WCF-SQL Debatch and Map: Error

    I am using WCF-SQL to poll and fetch a bunch of records. I then debatch them. (Tested the output and it's ok). As a next step, I applied a map between the debatched schema and my canonical schema. Testing the map worked well. On deploying and running