Zen 7 Sp1 Desktop Mngt Schema update fails

Hey Gang....
I got a Netware 6.5 SP8 server as a lab box. Trying to load Zen 7 SP1 from the Desktop Managment .iso via my DVD #1 7/2009 Software Evaluation library DVD.
When I get to Schema Extension and Product Licensing I click the button, a dialogue box flashes by, but then nothing.
Any ideas? Any prerequisites not loaded? I am logged in as Admin.
Any help appreciated.
-RF

Dear Jared:
It was a bad CD. Thanks for the help!!!!
-Bill Jetter
Originally Posted by Jared Jennings
wjetter,
>When I get to Schema Extension and Product Licensing I click the
>button, a dialogue box flashes by, but then nothing.
SOunds like a bad CD to me.
I would try downloading the ISO from the main download site. Here's a link.
NOVELL: Downloads - Novell ZENworks 7 SP1 Suite Release 3 e-Media Kit
Jared Jennings
Novell Support Forums Sysop
Senior Systems Architect, Data Technique, Inc.
Data Technique, Inc. | Information Technology Consulting Solutions
My Blog and Wiki with Tips, Tricks, and Tutorials
http://jaredjennings.org
Twitter@ Jared Jennings (jaredljennings) on Twitter

Similar Messages

  • FDM Schema update failed with error

    Hi,
    Version: FDM 11.1.1.3
    Database: Oracle 11.2.0.1
    Running schema update on 9.3.0 schema failed with following error:
    Ram the schema upgrade utility (Name: FDMApp Schema Level: 9.3.0)
    The upgrade failed approximately 1 minute into the process with the following error:
    Application [FDMApp] failed, check log file!”
    From the log file:
    …\Applications\FDMApp\Outbox\Logs\FDMApp_Update.log
    ** Begin Schema Update Entry **
    Step 12: Update English Language Code to Standard Local Value Failed!
    -2147217873-Data access error
    SQL where it fails:
    ORA-00001: unique constraint (FDMOWNER.PK_TAPPOBJECT_LOCALE) violated
    UPDATE tSecObject_Locale Set LangKey = 1033 Where (LangKey = 1)
    Anyone have any idea on this???
    Thanks!

    Hello,
    I would suggest you make sure that you run the schema update on an appropriate FDM 9.3.0 application.
    Language records (as the one mentioned in the error) do not exist in FDM 9.3.0 and should not be a problem.
    I would suspect you either don't have a 9.3.0 application; or some other custom modification was made.
    Thank you,

  • Why does Creative Cloud Desktop block when updating fails?

    Actually, this is a feature request: Don't block Creative Cloud Desktop's other functions (App Download/Install, File Synchronization) just because there is an update.
    5 out 10 times updating fails at our facility, forcing us to reinstall the Creative Cloud App from a fresh download.
    All this time files are not synched, apps are not updated. This applies to both Mac and Windows versions.
    This is the tinyiest app of the Suite and it produces the most frustrations here – while the bigger applications (with installations in the GBs) run smoothly.

    That's what I get on a regular basis:  Creative Cloud Desktop could not be updated.(Error code: 2) Contact support  I will then download the latest Creative Cloud Desktop full install and install it manually. For every machine. Every now and then.
    But more important: You now have several Cloud File Sync services on your desktop (Dropbox, Onedrive, Google Drive etc.) and they manage to update themselves automagically – or not. They won't stop functioning, only because they could not get a specific mini-bugfix.

  • Mythtv schema update fails

    Upgrading mythtv to the latest version via pacman, all installs, apparently correctly.  You need to run mythtv-setup to update the schema, when I did this it failed.  There is a backup database created, so I dropped the new one, created mythconverg again, imported the backup database into it, and ran it from the command line.  The schema updates go fine until it gets to 1181, at which point it errors out.
    Error was: Driver error was [2/1062]
    Database error was: Duplicate entry '1045 -2008-04-02 17:00:00-5-0' for key 1
    There is a script in contrib to optimize the database, I've tried that.  It complains at first but runs without intervention, this does not change the upgrade result.
    Is this fixable?  I don't know enough mysql to dig into the guts of the thing.

    Error was: Driver error was [2/1062]
    Database error was: Duplicate entry '1045 -2008-04-02 17:00:00-5-0' for key 1
    Can you also post the name of the table for which this error is happening?

  • EDirectory 8.8.4 schema update failed on SLES10.2 OES2 SP1

    We are unable to update schema with optional attributes using ldap
    connection. We are using the API ldap_schema_add for updating the
    schema.
    It is returning 90.
    Note: we are able to modify schema using the same in case of eDirectory
    8.8.1 and 8.8.2 on SLES 10 sp2
    soumyajit_roy
    soumyajit_roy's Profile: http://forums.novell.com/member.php?userid=56993
    View this thread: http://forums.novell.com/showthread.php?t=380675

    Unfortunately, I do not do C.
    If the 90 is the LDAP error code from the server, then it is indicative
    of a memory error.
    -jim
    soumyajit roy wrote:
    > Hi Jim,
    >
    > Here are the details:
    >
    > What programing language? C++
    > What attributes? AgentPort and MonitorPort (Listening
    > Ports)
    > What Class? NCPServer Class in the schema
    >
    > I have given below the code snippet i am using for the schema
    > modification.
    >
    > Code:
    > // All the macros and other variables are defined. This same code is
    > working fine in SLES 9 and SLES 10 without OES (both with eDir 8.7.3 and
    > eDir 8.8.2).
    > .......
    > .......
    > const int modslots = 5+COUNT(attrtbl);
    > LDAPSchemaMod mod[modslots];
    > LDAPSchemaMod *pmod[modslots+1]; // room for terminating NULL
    > int idx = 0;
    >
    > // set up our new attribute
    > char *oid [] = {pszOid, NULL};
    > char *name[] = {pszName, NULL};
    > char *desc[] = {pszDesc, NULL};
    > char *syntax[] = {pszSyntaxOid, NULL};
    > char *xset[] = { "1", NULL };
    > char *xclear[] = { "0", NULL };
    >
    > // NOTE: the 'op' field of LDAP_SCHEMA_MOD is not used by
    > ldap_schema_add.
    > //
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = LDAP_SCHEMA_OID;
    > mod[idx].values = oid;
    > pmod[idx] = &mod[idx];
    > ++idx;
    >
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = LDAP_SCHEMA_NAMES;
    > mod[idx].values = name;
    > pmod[idx] = &mod[idx];
    > ++idx;
    >
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = LDAP_SCHEMA_DESCRIPTION;
    > mod[idx].values = desc;
    > pmod[idx] = &mod[idx];
    > ++idx;
    >
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = LDAP_SCHEMA_SYNTAX_OID;
    > mod[idx].values = syntax;
    > pmod[idx] = &mod[idx];
    > ++idx;
    >
    > for (int i=0; i<COUNT(attrtbl) && idx<modslots; i++)
    > {
    > if (flags & attrtbl[i].attrFlag)
    > {
    > // set the desired attribute
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = attrtbl[i].attrXString;
    > mod[idx].values = attrtbl[i].bSet?xset:xclear;
    > pmod[idx] = &mod[idx];
    > ++idx;
    > }
    > else
    > {
    > if (attrtbl[i].bIsClearable)
    > {
    > // attribute can be cleared, so do it.
    > mod[idx].op = LDAP_MOD_ADD;
    > mod[idx].fieldName = attrtbl[i].attrXString;
    > mod[idx].values = attrtbl[i].bSet?xclear:xset;
    > pmod[idx] = &mod[idx];
    > ++idx;
    > }
    > }
    > }
    >
    > pmod[idx] = NULL; // end of definition
    >
    > // make the change -- add schema attribute
    > rc = ldap_schema_add (schema, LDAP_SCHEMA_ATTRIBUTE_TYPE, pmod);
    > if (rc)
    > {
    > fprintf(stderr, "ldap_schema_add 1 failure (%d): %s\n", rc,
    > ldap_err2string( rc ));
    > fprintf(stderr, "Failed to add the attribute %s to the schema\n",
    > pszName);
    > }
    > .........
    > .........
    > //////////////////// End of Code.
    >
    > Here ldap_schema_add is returning error 90.
    >
    > This same code is working fine in SLES 9 and SLES 10 (both with eDir
    > 8.7.3 and 8.8.2) without OES.
    >
    >

  • SCUP2011 - SCCM2012 SP1 CU4: 3rd party updates fail to install with SoftDistHashMismatchEvent

    We publish 3rd party updates like Adobe Flash, Shockwave, Firefox with SCUP 2011 into WSUS.
    These 3rd party updates are imported/synchronized into our SCCM 2012 SP1 (CU4) environment and deployed to the clients/servers.
    But all of these 3rd party fail to install. Software Center returns the following error: The software change returned error code 0x80091007(-2146889721).
    The standard Microsoft Updates are downloaded and installed without any error.
    The 3rd party updates are downloaded by the client, but are deleted after checking the hash because of a hash mismatch (SoftDistHashMismatchEvent).
    As shown in the CAS.log:
    Submitted CTM job {5ACC812D-2126-4696-A852-AED288B4FEB0} to download Content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 under context System ContentAccess 26-03-2014 22:28:31 5956 (0x1744)
    Successfully created download  request {4F582B67-EDFC-486A-9762-96572A780CBC} for content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 ContentAccess 26-03-2014 22:28:31 5956 (0x1744)
    Location update from CTM for content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 and request {4F582B67-EDFC-486A-9762-96572A780CBC} ContentAccess 26-03-2014 22:28:32 3548 (0x0DDC)
    Download location found 0 - net:http://sccm.mydomain.local:8530/Content/32/04B9361CDC426D2DBC94B90A7BB0172CAE84D532.cab ContentAccess 26-03-2014 22:28:32 3548 (0x0DDC)
    Download location found 1 -
    http://sccm.mydomain.nl/SMS_DP_SMSPKG$/fea1aeb3-af1a-45aa-b464-4f90422b4720 ContentAccess 26-03-2014 22:28:32 3548 (0x0DDC)
    Download request only, ignoring location update ContentAccess 26-03-2014 22:28:32 3548 (0x0DDC)
    Download started for content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Download completed for content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 under context System ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    File 04b9361cdc426d2dbc94b90a7bb0172cae84d532.cab not expected in folder. ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    The content on the local cache location is not available anymore C:\Windows\ccmcache\px. Try downloading later ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Download failed for content fea1aeb3-af1a-45aa-b464-4f90422b4720.1 under context System, error 0x80091007 ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Download failed for download request {4F582B67-EDFC-486A-9762-96572A780CBC} ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Raising event:
    [SMS_CodePage(850), SMS_LocaleID(1043)]
    instance of SoftDistHashMismatchEvent
     ClientID = "GUID:93FA6D8A-9689-46F4-BB57-256BE8995A7B";
     DateTime = "20140326212832.587000+000";
     MachineName = "SERVERNAME";
     PackageId = "fea1aeb3-af1a-45aa-b464-4f90422b4720";
     PackageName = "fea1aeb3-af1a-45aa-b464-4f90422b4720";
     PackageVersion = "1";
     ProcessID = 5124;
     SiteCode = "A01";
     ThreadID = 5956;
    ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Successfully raised SoftDistHashMismatchEvent event. ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Error: DeleteDirectory:- Failed to delete Directory  with Error 0x00000003. ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Error: DeleteDirectory:- Failed to delete Directory C:\Windows\ccmcache\px.BCWork with Error 0x00000002. ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    Releasing content request {4F582B67-EDFC-486A-9762-96572A780CBC} ContentAccess 26-03-2014 22:28:32 5956 (0x1744)
    The strange thing is that 3rd party updates are downloaded/installed succesfully when using the Windows Update Control Panel applet, while WSUS and SCCM2012 are installed on the same server!
    Our environment uses PKI only for communication/authentication, because we manage multiple untrusted networks
    All servers are virtual servers (VMWare ESXi 5.5) with Windows Server 2008 R2 SP1 + latest updates.
    I already performed the following trouble-shooting tasks without any success:
    - I reinstalled the different Site System Roles.
    - Removed the SCCM client from the SCCM database and client and reinstalled
    - Removed the anti-virus software
    - Redeployed the 3rd party updates
    - Replaced the E1000 NICs with VMXNET3 (server and client)
    - Ensured no proxy between server and client
    - Downloading and installing the 3rd party updates manually from the specified download locations
      (e.g.
    http://sccm.mydomain.local:8530/Content/32/04B9361CDC426D2DBC94B90A7BB0172CAE84D532.cab or
    http://sccm.mydomain.nl/SMS_DP_SMSPKG$/fea1aeb3-af1a-45aa-b464-4f90422b4720) succeeds without a error.
    I really don't know what's going wrong.
    Is it a bug?

    Hi,
    I recommend that you try uninstalling the following KB’s.
    Run the following command to uninstall:
    wusa /uninstall /kb:2735855 /quiet /norestart
    wusa /uninstall /kb:2750841 /quiet /norestart
    Meanwhile, here's one video for your reference.
    Managing Third Party Updates with System Center 2012 Configuration Manager SP1
    http://channel9.msdn.com/Events/MMS/2013/UD-B326
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Windows update fails with error 0x800F0922 for KB2961072 on Windows 8.1 desktop

    I just tried to install updates on my Dell desktop tower running Windows 8.1 Pro. The first time it said that updates did not succeed and that it had to roll them back. I started using computer and now that same update notification showed up again.
    I tried installing it once more and got the same story -- it rolled them back. So I'm afraid I'm about to go into a deadloop with Microsoft here.
    On the side note let me say that I am not a fan of stopping my work to reboot computer and loose 10-15 min on this foolishness, so if there's a way to make these go away, I'd follow it.
    When I pull up an update window I get these:
    As for "security update for internet explorer", if that's the hold-up, I'd gladly pick the one that says, "Remove internet explorer 11 FOREVER" because I never use it and I don't know why I even have it?
    Anyway, when the update fails and gets rolled back after a reboot here's what I see in the event log:

    Hi,
    to solve this issue please follow the instructions given in this link:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c03653226#N421
    you've dell but this will solve your issue. or let us know if it isn't.
    and if you're interested in knowing the why such issue occurred then read this link: http://www.infoworld.com/t/microsoft-windows/how-fix-problems-revoked-uefi-module-patches-kb-2920189-and-2962824-242533

  • UPDATE FAILED MESSAGE WHEN TRYING TO DOWNLOAD FROM CC DESKTOP APP.

    I keep getting an 'update failed' message everytime I try to download from my CC desktop.
    What could this be?

    Kc2232 I would recommend reviewing the installation log for the update to determine why it is failing to install. You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • Zen Micro - firmware update failed so now "dead"

    I have a firmware problem with my Zen Micro. Can anyone help?
    The series of actions I have taken so far are these:
    I got my Micro in January 2006. I now want to run Audible software to listen to their books so I downloaded the firmware update L6_2_2_02.exe from the Creative support site which is stated as providing the Audible?facility.
    I backed up the Micro contents using Creative MeadiaSource Organiser. I then ran the firmware update from my Win XP PC. This started OK and I got a series of messages about what was happening. Then it stopped with the progress indicator bars about 2/3 across. I left it for half an hour and nothing changed so clicked to stop the update.
    I checked the firmware version on the Micro and it said 2.2.02. The update?looked OK and the FM worked but of course I had no music content.
    I opened my Creative MeadiaSource Organiser (v 3.0.09) but it said no device is connected so I was unable to reload the music. My XP PC recognised the Micro as connected and I checked Device Manager which showed the "device is working properly". I was also able to synch music to the Micro using Windows Media Player and this played OK. I tried another computer and could also synch using Windows Media Player but I wanted to reload my music from the backup.
    I looked on the Creative site for the steps to take when a firmware update fails. The Zen Micro is not on the list as supporting the MP3 Player Recovery Tool so I did not use that. I followed the Reload Failure recovery instructions and ran Clean UP, then Format All, but this did not fix it so I ran Reload Firmware on the Micro. This was a big mistake!
    Now when I try to run the firmware update from my Win XP PC, I select English then I get the message "Your player is not connected, please connect your player". I checked again and XP still recognises the Micro and the device is working. It is no longer recognised by Windows Media Player but just? appears to XP as an empty storage device.
    The Micro now shows the firmware as v 0.0.65, but now it is stuck in Recovery Mode. I have contacted Creative Support but their reply is that this player is now over 3 years old, reached its end of service life, so there is no support other than on their web site. Following their web site recovery instructions got me into this mess so I guess?no extra help is offered from Creative.
    The player is now essentially dead. Unless there is some way to get the firmware update program to recognise the device as connected, then I don't know how to fix this. This is a shame as it is a nice little player for my music collection.
    Can anyone help as I don't know what to do next?

    I have the same problem. I put the screenshots below and the errors that happen to me.I can not put him the firmware because I do not recognize the device.
    Both windows xp windows 7 as the
    DISPOSITIVO, IMAGEN ACTUAL
    http://img528.imageshack.us/img528/3783/dsc0025mv.jpg
    EL PORTATIL LO RECONOCE
    http://img811.imageshack.us/img811/4323/dsc0026ox.jpg
    MUESTRA BATERIA, PULSANDO BOTON DERECHO
    http://img546.imageshack.us/img546/4855/dsc0027wj.jpg
    ADMINISTRADOR DE DISPOSITIVOS
    http://img801.imageshack.us/img801/4501/dsc0028une.jpg
    ERROR AL INSTALAR CREATIVE SOURCE
    http://img805.imageshack.us/img805/3061/dsc0029io.jpg
    http://img208.imageshack.us/img208/9330/dsc0031sn.jpg
    http://img545.imageshack.us/img545/7096/dsc0032qg.jpg
    MP3 PLAYER RECOVERY TOOL, no me reconoce Creative ZEN MICRO como conectado
    http://img528.imageshack.us/img528/1714/dsc0030qn.jpg
    PROGRAMAS DESCARGADOS (pagina oficial creative)
    http://img341.imageshack.us/img341/2466/dsc0033oi.jpg
    DSC_0025.jpg
    I need your help. I'm desperate. Uninstall Windows Media Player.
    Thanks in advance

  • Zen Micro Photo Firmware 'Update Fail

    Ive tried several things, several computers. The Zen will only boot to the firmware screen if not docked. If Docked the Zen can update but at the end, it will always say, 'Update Failed!'?I was wondering if this is the Motherboard, or the Hard-dri've. I dont hear any clicks or sounds from the hard dri've.

    This all started a few days ago, the Zen was playing a nice track and then it turned off, I turned it back on thinking wtf. It came on, played for about sec then said, 'Overheating Shutting Down'?so I tried a few more times and it said the same thing, it was rather Cold outside, wierd. I went home, let it stay infront of a fan for a few hours and thats when it wouldnt even boot after that. Then I couldnt recharge the battery for some odd reason, and the update didnt want to install, So i had my old BROKEN ZEN MICRO which has the same EXACT PROBLEM, anyways, I took that battery and used it cause it charged unlike the ZEN MICRO PHOTO Battery. After that, then I installed the update, but then it gave me that problem of Update failed, so here i am now...

  • Desktop BIOS update fails

    HP Support Assistant tells me that there is a BIOS update.  I tell it to go ahead: download and install it.  The multi-step process succeeds with a green checkmark for all but the last step.  Installation fails with an X and no further explanation.  What is one to do?  This update is "HP Consumer Desktop PC BIOS Update (ROM Family SSID 2AF3). So I go to the "HP Support - Software and Driver Downloads" web page for my machine.  It suggests an update SP69769.EXE.  I download and run it.  After chugging away, it says that it isn't for my machine.  I guess that the HP web page is wrong then.  A further clue: this was released November 13, 2014.  It is listed as version 80.24a. The BIOS security bulletin is dated 2014 and 2015 and recommends sp67055.exe for my machine.  Version 80.21.  I think that that is the previous version that I had installed in 2014 July. After thrashing about some more, msinfo32 says I have AMI BIOS 80.24, so maybe all is well.  Support assistant seems happy too. I don't know what an ordinary user is supposed to do with problems like this.

    Mumbodog wrote:
    I never update a bios unless that is the only way to solve a critical problem, its just to risky and there is no real benefit to risk reward. A bios update that fails at a critical point for Any reason can brick your PC.Thanks.  I've certainly seen that advice. I always try to apply firmware updates.  They are created for a reason.  Unfortunately, most vendors descriptions of new firmware are rather sparse. I've only once bricked a device, and that was a bug in the flashing software.  The manufacturer (not HP) covered the problem under warranty.

  • Desktop Mgr: Music services failed to load.

    Hello, I've tried to reinstall the desktop manager, formatted the 16GB Media Card, in the Memory section of the Options (Compression - Disabled, Media Card Support - On, Media Transfer Protocol - On, Mass Storage Mode - On, Auto Enable Mass Storage Mode When Connnected - Yes).
    I can sync Pictures, Videos, Calendar, Contacts, Tasks.  However, when I select Music from Media Sync I get "Music Services Failed to Load "An unexpected error occurred."
    Desktop Mgr Bundle 1656 | Windows 7 Professional SP1 | 64bit
    I have attached the desktop.log
    09:21:58.928|DEBUG|20|RimDeviceManager.exe|0|[1208] [3251AF1B:C8C320] Device Connection Acquired
    09:21:58.929|DEBUG|9|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4DE30] Connection to device established.
    09:21:58.929|DEBUG|9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B] Device connection established by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:21:58.929|INFO |9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::Connect|PIN:0x3251AF1B] Desktop connection acquired.
    09:21:58.942|DEBUG|9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::GetProtocolId|PIN:0x3251AF1B] Protocol found. Protocol: Database Access Id: 1.
    09:21:59.728|INFO |45|Rim.Desktop.Services.Tasks|0|TASK: [Task_Action_After_Startup], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <ExecuteAfterStartup>b__2c()
    09:21:59.729|INFO |45|Rim.Desktop.Services.Tasks|0|TASK: [Task_Action_After_Startup], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 2005
    09:21:59.734|INFO |9|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::~IManagedDesktopChannelConnection|844214043] Destroying IManagedDesktopChannelConnection.
    09:21:59.735|INFO |9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl:isconnect|PIN:0x3251AF1B] Disconnecting desktop channel connection.
    09:21:59.735|DEBUG|9|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4DE30] Disconnecting device.
    09:21:59.747|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Release Interface C8C320
    09:21:59.747|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass true true
    09:21:59.748|DEBUG|9|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4DE30] device disconnected.
    09:21:59.748|DEBUG|9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection release requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:21:59.748|DEBUG|9|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection released requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:21:59.748|DEBUG|9|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4DE30] Disconnecting device.
    09:21:59.748|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Release Interface C8C320
    09:21:59.748|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass true true
    09:21:59.748|DEBUG|9|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4DE30] device disconnected.
    09:21:59.750|DEBUG|1|Rim.Desktop.IntelliSync.|0|Auto organizer sync - device 844214043
    09:21:59.804|INFO |1|Rim.Desktop.Common|0|Setting Rendermode to SoftwareOnly for Window Rim.Desktop.IntelliSync.View.ProgressDialog
    09:21:59.805|DEBUG|1|Rim.Desktop.IntelliSync.|0|Performing operation Rim.Desktop.IntelliSync.ViewModel.MainViewModel+OperationDelegate on device 844214043
    09:21:59.805|DEBUG|1|Rim.Desktop.IntelliSync.|0|Execute organizer operation in an already acquired device session.
    09:21:59.806|DEBUG|1|Rim.Desktop.IntelliSync.|0|Finished operation Rim.Desktop.IntelliSync.ViewModel.MainViewModel+OperationDelegate
    09:21:59.815|DEBUG|23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::IManagedDesktopChannelConnection|844214043] Creating ManagedDesktopChannelConnection.
    09:21:59.815|INFO |23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::Connect|844214043] Connecting to device.
    09:21:59.815|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnectionIN:0x3251AF1B] "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl" client requesting device connection.
    09:21:59.815|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B]  Establishing new connection to device.
    09:21:59.815|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4E1B0] Connecting to device.
    09:21:59.816|INFO |30|Rim.Desktop.Services.Device|0|[DIAG] EVENT=Register_thread, THREADID=0x1538, THREADNAME="Unnamed"
    09:21:59.816|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Acquire Interface RIMDESKTOPCHANNEL on device B8F798
    09:21:59.817|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass false false
    09:21:59.817|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Disable Bypass
    09:21:59.873|INFO |43|Rim.Desktop.Services.Tasks|0|TASK: [Task_Action_After_Startup], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <ExecuteAfterStartup>b__2c()
    09:21:59.873|INFO |43|Rim.Desktop.Services.Tasks|0|TASK: [Task_Action_After_Startup], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 2005
    09:22:00.242|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] lockPassword. TRUE
    09:22:00.391|INFO |45|Rim.Desktop.Media|0|Task [videos_SetThumbnailTask] running after delay on new thread
    09:22:00.391|INFO |45|Rim.Desktop.Media|0|Task [videos_SetThumbnailTask] run on new thread MTA
    09:22:00.391|INFO |49|Rim.Desktop.Media|0|TASK: [videos_SetThumbnailTask], STATE: Pending, TRANSITION: none, OPERATION: none
    09:22:00.392|INFO |49|Rim.Desktop.Media|0|TASK: [videos_SetThumbnailTask], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <AddFileItemToLibraryAndList>b__12()
    09:22:00.393|INFO |49|Rim.Desktop.Media|0|TASK: [videos_SetThumbnailTask], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <AddFileItemToLibraryAndList>b__12()
    09:22:00.394|INFO |49|Rim.Desktop.Media|0|TASK: [videos_SetThumbnailTask], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <AddFileItemToLibraryAndList>b__12()
    09:22:00.394|INFO |49|Rim.Desktop.Media|0|TASK: [videos_SetThumbnailTask], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 2
    09:22:00.464|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] lockPassword. FALSE
    09:22:00.464|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:C8F138] Device Connection Acquired
    09:22:00.465|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4E1B0] Connection to device established.
    09:22:00.465|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B] Device connection established by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:00.465|INFO |23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::Connect|PIN:0x3251AF1B] Desktop connection acquired.
    09:22:00.476|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::GetProtocolId|PIN:0x3251AF1B] Protocol found. Protocol: Database Access Id: 1.
    09:22:17.475|INFO |23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::~IManagedDesktopChannelConnection|844214043] Destroying IManagedDesktopChannelConnection.
    09:22:17.475|INFO |23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl:isconnect|PIN:0x3251AF1B] Disconnecting desktop channel connection.
    09:22:17.475|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E1B0] Disconnecting device.
    09:22:17.488|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Release Interface C8F138
    09:22:17.489|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass true true
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E1B0] device disconnected.
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection release requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection released requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E1B0] Disconnecting device.
    09:22:17.489|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Release Interface C8F138
    09:22:17.489|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass true true
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E1B0] device disconnected.
    09:22:17.489|DEBUG|23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::IManagedDesktopChannelConnection|844214043] Creating ManagedDesktopChannelConnection.
    09:22:17.489|INFO |23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::Connect|844214043] Connecting to device.
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnectionIN:0x3251AF1B] "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl" client requesting device connection.
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B]  Establishing new connection to device.
    09:22:17.489|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4E0B0] Connecting to device.
    09:22:17.490|INFO |49|Rim.Desktop.Services.Device|0|[DIAG] EVENT=Register_thread, THREADID=0x1910, THREADNAME="Unnamed"
    09:22:17.490|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Acquire Interface RIMDESKTOPCHANNEL on device B8F798
    09:22:17.490|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] enableBypass false false
    09:22:17.490|DEBUG|29|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] Disable Bypass
    09:22:17.976|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] lockPassword. TRUE
    09:22:18.529|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:B8F798] lockPassword. FALSE
    09:22:18.530|DEBUG|20|RimDeviceManager.exe|0|[1B1C] [3251AF1B:C9B058] Device Connection Acquired
    09:22:18.530|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4E0B0] Connection to device established.
    09:22:18.530|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B] Device connection established by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:18.530|INFO |23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::Connect|PIN:0x3251AF1B] Desktop connection acquired.
    09:22:18.540|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl::GetProtocolId|PIN:0x3251AF1B] Protocol found. Protocol: Database Access Id: 1.
    09:22:19.241|INFO |23|Rim.Desktop.DesktopChannelWrapper|0|[IManagedDesktopChannelConnection::~IManagedDesktopChannelConnection|844214043] Destroying IManagedDesktopChannelConnection.
    09:22:19.241|INFO |23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:esktopChannel:esktopChannelImpl:isconnect|PIN:0x3251AF1B] Disconnecting desktop channel connection.
    09:22:19.241|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E0B0] Disconnecting device.
    09:22:19.253|DEBUG|29|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] Release Interface C9B058
    09:22:19.253|DEBUG|29|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] enableBypass true true
    09:22:19.253|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E0B0] device disconnected.
    09:22:19.253|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection release requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:19.253|DEBUG|23|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::ReleaseDesktopChannelConnection|PIN:0x3251AF1B] Desktop connection released requested by "Rim.Desktop.Services.Device.DesktopChannel.DesktopChannelImpl".
    09:22:19.253|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E0B0] Disconnecting device.
    09:22:19.254|DEBUG|29|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] Release Interface C9B058
    09:22:19.254|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] enableBypass true true
    09:22:19.254|DEBUG|23|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::disconnect] [13F4E0B0] device disconnected.
    09:22:19.276|DEBUG|9|Rim.Desktop.Services.Configuration|0|Saving configuration.  Path: C:\Users\Ron\AppData\Roaming\Research In Motion\BlackBerry Desktop\Settings.config.
    09:22:19.280|INFO |9|Rim.Desktop.Services.DeviceManager|0|[PIN:0x3251AF1B] Login-Finished Login Handler. Client: IntelliSync
    09:22:19.280|INFO |9|Rim.Desktop.Services.DeviceManager|0|[PIN:0x3251AF1B] Login-Device login succeeded, device online.
    09:22:19.282|DEBUG|9|Rim.Desktop.Services.Device|0|[desktop_device_connection:eviceUtilities::GetDeviceRegistryProperty] HardwareIDOverride not found.
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|Device report already sent today skipping.  Device: PIN:0x3251AF1B
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|[ProcessDeviceLoginRequest] Exit.  Device: PIN:0x3251AF1B
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Device Login], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <LoginCurrentDevice>b__11()
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Device Login], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 41947
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Characteristics]], STATE: Pending, TRANSITION: none, OPERATION: none
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Characteristics]], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <OnDevicePropertyChanged>b__41()
    09:22:19.287|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Characteristics]], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 0
    09:22:19.288|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Online]], STATE: Pending, TRANSITION: none, OPERATION: none
    09:22:19.288|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Online]], STATE: Progressing, TRANSITION: Progressing -> Finishing, OPERATION: Void <OnDevicePropertyChanged>b__42()
    09:22:19.288|INFO |9|Rim.Desktop.Services.DeviceManager|0|TASK: [[PIN:0x3251AF1B] Publish Device Attributes Changed. [Online]], STATE: Completed, TRANSITION: none, OPERATION: none, DURATION: 0
    09:22:19.289|INFO |1|Rim.Desktop.IntelliSync.|0|IntelliSync current device attribute changed.
    09:22:19.289|INFO |1|Rim.Desktop.CertSync|0|CertSync current device attribute changed.
    09:22:19.289|DEBUG|1|Rim.Desktop.AppManagement|0|Loader client service supported by device: PIN:0x3251AF1B
    09:22:19.290|INFO |1|Rim.Desktop.Shell|0|[DeviceAttributesChangedEventHandler] DeviceState: Device: PIN:0x3251AF1B Attached: True Inoperative: False OnlineState: Online DefaultTransport: USB.
    09:22:19.292|INFO |1|Rim.Desktop.IPModem|0|DataModemStatus Update. Current:  New:
    09:22:19.292|INFO |1|Rim.Desktop.IPModem|0|DataModemStatus Update. No change, ignore.
    09:22:19.292|INFO |1|Rim.Desktop.IntelliSync.|0|IntelliSync current device attribute changed.
    09:22:19.292|INFO |1|Rim.Desktop.IntelliSync.|0|IntelliSync current device attribute changed - online attribute changed, set the sync button.
    09:22:19.292|INFO |1|Rim.Desktop.IntelliSync.|0|IntelliSync set the sync button.
    09:22:19.292|INFO |1|Rim.Desktop.IntelliSync.|0|IntelliSync set the sync button - device is online, add the sync button.
    09:22:19.292|INFO |1|Rim.Desktop.CertSync|0|CertSync current device attribute changed.
    09:22:19.355|DEBUG|1|Rim.Desktop.CertSync|0|Fetched 0 new certificate(s), Updated 0 existing certificate(s) from Source
    09:22:19.355|INFO |1|Rim.Desktop.CertSync|0|Creating certificate sources
    09:22:19.355|INFO |1|Rim.Desktop.CertSync|0|CertSync Library Instance - Initialized
    09:22:19.355|INFO |1|Rim.Desktop.CertSync|0|CertSync Preference Library Instance - Created
    09:22:19.356|INFO |1|Rim.Desktop.CertSync|0|CertSync Server Library Instance - Created
    09:22:19.356|DEBUG|1|Rim.Desktop.CertSync|0|CertSyncLib initialized with device: 3251AF1B
    09:22:19.356|DEBUG|1|Rim.Desktop.CertSync|0|ICertSyncPreferenceLib initialized with device: 3251AF1B
    09:22:19.356|DEBUG|1|Rim.Desktop.CertSync|0|updating CertUsageFiltersTypes
    09:22:19.356|DEBUG|1|Rim.Desktop.CertSync|0|updating CertTabFiltersTypes
    09:22:19.358|DEBUG|1|Rim.Desktop.AppManagement|0|Loader client service supported by device: PIN:0x3251AF1B
    09:22:19.358|INFO |1|Rim.Desktop.Shell|0|[DeviceAttributesChangedEventHandler] DeviceState: Device: PIN:0x3251AF1B Attached: True Inoperative: False OnlineState: Online DefaultTransport: USB.
    09:22:19.359|INFO |1|Rim.Desktop.Shell|0|PIN:0x3251AF1B CheckForDeviceSoftwareUpdate
    09:22:19.361|INFO |1|Rim.Desktop.Shell|0|Create DeviceLoaderSession.  Device: PIN:0x3251AF1B Type: CheckDeviceSoftwareUpdates.
    09:22:19.361|INFO |1|Rim.Desktop.Shell|0|[LoaderSession Device: PIN:0x3251AF1B Type: CheckDeviceSoftwareUpdates] Create DeviceLoaderSession.
    09:22:19.363|DEBUG|1|Rim.Desktop.Services.DeviceManager|0|[PIN:0x3251AF1B] InternalAcquireDeviceRequest Device requested. Online: True Client: DeviceLoaderSession Priority: 20 Transport: USB
    09:22:19.369|INFO |46|Rim.Desktop.Services.DeviceManager|0|[PIN:0x3251AF1B] HandleDeviceRequest OnAcquired. Client: DeviceLoaderSession Token: System.Object Result: Ok
    09:22:19.371|DEBUG|46|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice::AppLoader::LoaderClient::LoaderClientIN:0x3251AF1B] Creating LoaderClient. 26578809
    09:22:19.371|DEBUG|46|Rim.Desktop.Services.Device|0|[LoaderClientModel::LoaderClientModel] Loaded "C:\Program Files (x86)\Common Files\Research In Motion\AppLoader\LoaderClient.dll", version: 6.0.1.33, date: Jun  7 2011
    09:22:19.379|DEBUG|46|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice::HandheldAgent::HandheldAgentLoader::LoadDeviceConfiguration|PIN:0x3251AF1B] Acquiring Handheld Agent properties.
    09:22:19.379|DEBUG|46|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnectionIN:0x3251AF1B] "Rim.Desktop.Services.Device.HandheldAgent.HandheldAgentLoader" client requesting device connection.
    09:22:19.379|DEBUG|46|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B]  Establishing new connection to device.
    09:22:19.379|DEBUG|46|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4DF30] Connecting to device.
    09:22:19.385|INFO |51|Rim.Desktop.Services.Device|0|[DIAG] EVENT=Register_thread, THREADID=0x6B0, THREADNAME="Unnamed"
    09:22:19.385|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] Acquire Interface RIMDESKTOPCHANNEL on device B8F798
    09:22:19.386|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] enableBypass false false
    09:22:19.386|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] Disable Bypass
    09:22:19.721|DEBUG|20|RimDeviceManager.exe|0|[1B1C] Enable Serial Bypass. Current State: false New State: false
    09:22:19.746|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] lockPassword. TRUE
    09:22:19.976|DEBUG|20|RimDeviceManager.exe|0|[4B4] [3251AF1B:B8F798] lockPassword. FALSE
    09:22:19.976|DEBUG|29|RimDeviceManager.exe|0|[4B4] [3251AF1B:C9BEE0] Device Connection Acquired
    09:22:19.977|DEBUG|46|Rim.Desktop.Services.Device|0|[IDesktopChannelConnectionImpl::connect] [13F4DF30] Connection to device established.
    09:22:19.977|DEBUG|46|Rim.Desktop.Services.Device|0|[Rim:esktop:ervices:evice:eviceInternal::AcquireDesktopChannelConnection|PIN:0x3251AF1B] Device connection established by "Rim.Desktop.Services.Device.HandheldAgent.HandheldAgentLoader".
    09:22:19.977|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_get_databases_summary] _get_databases_summary. MultiSource: false.
    09:22:19.977|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_refresh_databases] _refresh_databases. MultiSource: false
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: CustomWordsCollection Version: 0 Entries: 1092 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Key Store Options Version: 0 Entries: 1 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Handheld Agent Version: 1 Entries: 376 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: KeyStoreManager Version: 0 Entries: 1 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Profiles Options Version: 1 Entries: 1 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Attachment Data - Calendar Version: 0 Entries: 0 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Quick Contacts Version: 0 Entries: 2 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Browser Data Cache Version: 1 Entries: 21 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Configuration Channel Version: 1 Entries: 5 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Input Learning Data Version: 0 Entries: 304 Size: 0
    09:22:20.242|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Device Options Version: 1 Entries: 0 Size: 0
    09:22:20.245|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Phone Call Logs Version: 0 Entries: 194 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Mobile Network Options Version: 1 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: WTLS Options Version: 0 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Address Book - All Version: 0 Entries: 386 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Firewall Options Version: 0 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Address Book Options Version: 0 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Calendar Options Version: 0 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Categories Version: 0 Entries: 4 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Map Locations Version: 0 Entries: 2 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Calendar Version: 5 Entries: 1327 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Default Service Selector Version: 2 Entries: 3 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: AutoText Version: 2 Entries: 107 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Random Pool Version: 0 Entries: 1 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: RMS Databases Version: 1 Entries: 12 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Recent Contacts Version: 0 Entries: 130 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Purged Messages Version: 0 Entries: 0 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Application Permissions Version: 1 Entries: 108 Size: 0
    09:22:20.246|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Trusted Key Store Version: 0 Entries: 76 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Enhanced Gmail Plug-in Version: 17 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Address Book - Last Used Hints Version: 0 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: SlideshowToGoPrefs Version: 1 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: PIN Messages Version: 3 Entries: 0 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Folder Id Version: 0 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Code Module Group Properties Version: 1 Entries: 55 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: MMS Options Version: 1 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Location Based Services Version: 0 Entries: 0 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Message List Options Version: 1 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Policy Version: 0 Entries: 0 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Browser Channels Version: 1 Entries: 0 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Compatibility Settings Version: 0 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: PasswordKeeper Version: 1 Entries: 0 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: WordToGoPrefs Version: 1 Entries: 1 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Browser Folders Version: 1 Entries: 2 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: SMS Messages Version: 5 Entries: 139 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Phone History Version: 0 Entries: 356 Size: 0
    09:22:20.247|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Saved Email Messages Version: 3 Entries: 11 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Smart Card Options Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Handheld Key Store Version: 0 Entries: 76 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Map Settings Version: 0 Entries: 10 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: PGP Key Store Version: 0 Entries: 0 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: SheetToGoPrefs Version: 1 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Suretype options Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: SQLite Keys Version: 1 Entries: 0 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: MemoPad Options Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: BlackBerry Messenger Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Input Method Switcher Option Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: File Explorer Network Favorites Version: 0 Entries: 0 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: MMS Messages Version: 1 Entries: 0 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Theme Settings Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: ITUTPredictive Multitap options Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Input System Properties Version: 0 Entries: 1 Size: 0
    09:22:20.248|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Recipient Cache Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: BackupAssistant settings Version: 1 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: BIS Account Data Version: 1 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Content Store Version: 1 Entries: 0 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Voice Activated Dialing Options Version: 1 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Folders Version: 0 Entries: 9 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Certificate Options Version: 0 Entries: 0 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Memos Version: 0 Entries: 20 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: TCP/IP Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Tasks Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Clock Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: BBGroups Version: 0 Entries: 8 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: VideoRecorder Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Camera Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Bluetooth Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Service Book Version: 2 Entries: 18 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: TLS Options Version: 0 Entries: 1 Size: 0
    09:22:20.249|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Browser Messages Version: 1 Entries: 0 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Browser Bookmarks Version: 1 Entries: 2 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Phone Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Alarm Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: File Explorer Network History Version: 0 Entries: 0 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: File Explorer Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: AutoText Data Version Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Tasks Version: 2 Entries: 7 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Memory Cleaner Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: DocsToGoCommonPrefs Version: 1 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Diagnostic App Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: PasswordKeeper Options Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Mailbox Icon Management Options Version: 1 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Secure Email Decision Maker Version: 0 Entries: 1 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl::_parse_database_names] Adding Database. Name: Messages Version: 3 Entries: 40 Size: 0
    09:22:20.250|DEBUG|46|Rim.Desktop.Services.Device|0|[DeviceDatabaseAccessImpl

    The logfile was extremely big.  BTW, I attached the entire log in the email replay. 
    Also I'm running iTunes 10.4.1.10.

  • Office 2013 updates fail on computers with Access 2013 installed

    I have about 10 workstations with the combination of Windows 7 enterprise 32 bit, Access 2013 and Office 2007 installed.
    SCCM offers up both Office 2007 and Office 2013 updates to these machines, but the Office 2013 updates, fail to install.
    The same thing happens when I go to Microsoft updates and manually install the required Office 2013 updates.
    I read that one of the updates required Office 2013 sp1.
    But when I downloaded it, it won't install:  KB2817430 "The expected version of this product was not found on the system."
    This is the second month I've had the failures. I removed KB2878316 and KB2889927 from my deployments and packages to stop repeated install attempts.
    But this month I've got a new on failing, KB2899493.
    Is there a way around this problem?

    Thanks, I couldn't really find anything but it looks as though this could be just the way it is.
    from http://support.microsoft.com/kb/2784668
    When you start a version of Access on a computer that has multiple versions of Access installed, the Windows Installer may start, and
    a message that states that the Windows Installer is preparing to install Access may be displayed before Access starts.
    Every time that you start Access 2003, Access 2007, or Access 2010 after you use Access 2013, the Windows Installer repair operation registers
    that version of Access. Similarly, the Windows Installer repair operation registers Access 2010 every time that you start it after you use an earlier version of Access. This does not occur when you start Access 2002, nor does it occur when you start the same
    version of Access again. 
    Is this likely to also apply even when running App-V?

  • Itunes update failed on 2 computers, couldn't find msvcr80.dll files.Now have no itunes at all

    iTunes update failed on both computers. Couldn't find msvcr80.dll, now I have no iTunes at all. Is it iTunes or the computers?

    Beth Trachtenberg wrote:
    I did NOT move the other folders (Album Artwork, Mobile Applications, Playlists, Previous iTunes Libraries) or files (iTunes Library, iTunes Library Extras, iTunes Library Genius, iTunes Music Library) that are located inside the Music/iTunes folders.
    should be no problem. i'm doing this also.
    Everything was working fine on both computers - Consolidated the library on the external drive and did the Change the location of the iTunes Media folder in Preferences on both computers, no problem.
    However I added two movies and a few songs to my desktop Mac yesterday - all showed up and played fine after adding them - but when I plug the external drive into my laptop, the new additions don't appear in the library.
    if you're purchasing content from the iTMS, you could use _*Home Sharing*_ to automatically add new content to all machines on your local network.
    Am I right in guessing that it is because the iTunes Library file on the laptop isn't the same as the one on the desktop computer?
    yes.
    Is there a way to add them to the library listing on the laptop? If yes, is that something I need to do every time I connect the external drive to the laptop if I've added things from the desktop computer (I never add stuff on the laptop).
    basically, yes. however, there's _*Home Sharing*_ and ... see below.
    Should I have put the entire iTunes folder - files, folder and media - onto the external drive?
    that's one possibility, however, only one Mac @ a time could access that library. there are other options:
    *the easy way*
    check out TuneRanger.
    *the more involved way*
    click here for tips/information.
    JGG

  • Config Manager 2012 R2 Update Failed - Now What?

    Starting Environment:
    Windows Server 2012 VM
    Configuration Manager 2012 CU1
    SQL Server 2012 Enterprise SP1 installed on a separate 2 node cluster 
    We have been running this setup for Config Manager 2012 CU1 for about a year now with no issues at all.  In an effort to deploy Windows 8.1 I ran the Configuration Manager 2012 R2 Update.  The update failed halfway through.  From the ConfigMgrSetup.log
    it looks like it wasn't able to connect to the database and this is why the update failed. Problem is after the install failed I am no longer able to connect to the database when opening the CM console.  I get the "Configuration Manager cannot connect
    to the site" message.  Here is the error from the SMSAdminUI.log:
    [02/24/2014 19:10:21] :Transport error; failed to connect, message: 'The SMS Provider reported an error.'\r\nMicrosoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException\r\nThe SMS Provider reported an error.\r\n   at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.Connect(String configMgrServerPath)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.GetConnectionManagerInstance(String connectionManagerInstance)\r\nConfigMgr Error Object:
    instance of __ExtendedStatus
    Operation = "ExecQuery";
    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'EPS'";
    ProviderName = "WinMgmt";
    Error Code:
    ProviderLoadFailure
    \r\nSystem.Management.ManagementException\r\nProvider load failure \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
    Operation = "ExecQuery";
    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'EPS'";
    ProviderName = "WinMgmt";
    \r\n
    [10, PID:6140][02/24/2014 19:10:21] :System.Management.ManagementException\r\nProvider load failure \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObject.InvokeMethod(String methodName, ManagementBaseObject inParameters, InvokeMethodOptions options)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters, Boolean traceParameters)\r\nManagementException details:
    I have tried running the R2 update again but am now faced with the following 2 failures during run check:
    Current SUM configuration uses virtual locations for some of the active SUPs. Please remove any virtual locations from the existing SUM configuration.
    There is an active source hierarchy configured for migration. Please stop data gathering for each source site in the source hierarchy.
    I do not know how I can fix these errors without being able to connect through the console.  
    Does anyone have any ideas on how I can reconnect the console to the database and eventually successfully run the R2 update?
    Database itself seems fine. No errors.  Database mounts fine.   
    Thanks in advance for any input.  

    Hi,
    I saw a similar problem with yours. It should be helpful.
    http://social.technet.microsoft.com/Forums/en-US/dda03cc4-e78e-409b-a9dd-f6d8a4f96774/upgrade-to-system-center-2012-sp1-prerequisite-check-failed-with-error-software-update-points-in?forum=configmgrsum
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • Images can no longer be inserted into the header in iWork pages '13?

    in iwork '09, it is allowed to insert a image in the header and footer. what happened to the iwork '13? any ideas?

  • Giving error in pl/sql while truncating need help

    Hi Gurus, I have a procedure to execute 5 truncate statements which is oftenly giving the error like "resource busy and acquire with nowait". I do not know the root cause of this. I tried with changing the scheduling time for that procedure eventhoug

  • Problem installing photo deluxe

    Newbie,  sorry for coming in the back door! I could not find the product that i am having problem installing. realizing  being in the wrong pew mavbe you could direct me? I am having prob. installing adobe photo deluxe 4.0. i used it for many yrs - i

  • Replicate Sales Order from R/3 to CRM

    Dear SAP CRM Gurus, I want to replicate the sales orders created in R/3 to CRM . These order flow to R/3 from legacy system. Please provide me the middleware steps need to be done for this. Also provide me other criteria required for replication to C

  • Error Message "Please connect printer to HP Connected"

    When I print I keep getting a message "Please connect printer to HP connected". Each time I have to OK this before the document will print. I have printed the HP Network Configiration page and it shows the Internet and Wireless status's as "connected