Must reformat windows XP unable to get it to function

I am trying to fix a computer for friends daughter before she heads off to school. I have worked on the software for 6 hours with over 1200 virus, tojans, and worms. The unit will still not boot up correctly unless in safe mode, so am going to fromat and reload o/s. She only wants me to save her music and pictures.
I have hooked the drive up to another computer and as a slave drive, can copy off any and all files needed. I understand that i must do something or save something to save her Itunes/Ipod music as she paid for it, and does not wish to loose it. Another person i know, copied his kids off, but when he went to copy to new hard drive it indicated the music was not theirs and she lost over 1200 songs.
She heads off to school next weeks and hope to fix.
Can someone help? Or point me in the right direction as what to read/do/or do we write all of her music off?

okay, this Buegie post should be of some help with this:
http://discussions.apple.com/click.jspa?searchID=-1&messageID=2639135
you probably also want to do some preliminary checking to make sure you know where the itunes music folder (and files) is kept on the PC, and whether or not she has music files scattered in various locations around the PC. (if all the music isn't stored in the itunes folder, then copying that for the backup isn't going to catch all the music files.)
this document may be of some help with that:
iTunes Music Store: Finding lost music and video downloads

Similar Messages

  • Unable to get refresh-ahead functionality working

    We are attempting to implement a cache with a refresh ahead so that the calling code never experience any latency due to a synchronous load from the cache loader that happens if requesting an object that has expired (so just standard refresh ahead as documented). I can't seem to get the configuration to recognize the refresh ahead setting at all - it behaves the same way regardless of whether or not the <refresh-ahead-factor> setting is included, and never does an asynchronous load. All the other settings in the configuration work as expected. I have included the configuration and what I expect the behaviour to be and what it currently is.
    Is there anything else in other configuration files, etc that needs to set up to enable asynchronous loads via the refresh-ahead-factor? Note I have tried upping the worker threads via the thread-count in tangosol-coherence-override.xml (no difference).
    One thing I couldn't seem to find in the documents is when the asynchronous load will occur. I assume it is near real time after a triggering 'get' after the refresh-ahead-factor, but if not that could explain the behaviour. Is there some setting that controls this, or does it happen as soon as a worker thread gets to it?
    In my tests I am running a single cluster node on my local machine (version 3.3 Grid Edition in Development mode). Note the 20second expiry and .5 refresh-ahead factor is just for test purposes to see behaviour, in production it will be 12hours with a higher refresh factor such as .75.
    Current behaviour (appears to be standard read-through and ignore the refresh-ahead-factor):
    - request for an object that does not exist in cache blocks the calling code until it is loaded and put into the cahce via the cache loader
    - request for an object that exists before the exiry period has passed (before 20 seconds since load in this configuration) since it was loaded returns the object from cache.
    - request for an object that exists after the exiry period has passed (after 20 seconds since load in this configuration) blocks the calling code until it is loaded and put into the cahce via the cache loader.
    - No requests ever appear to trigger asynchronous loads via the cache loader
    Expected behaviour, given the .5 refresh-ahead-factor
    - request for an object that does not exist in cache blocks the calling code until it is loaded and put into the cahce via the cache loader (same as above)
    - request for an object that exists before the exiry period has passed (before 20 seconds since load in this configuration) since it was loaded returns the object from cache, and triggers an asynchronous reload of the object via the cache loader if requested after the refresh ahead factor. So in this example I would expect that if I requested an object out of the cache between 10 - 20 seconds after it was loaded, it would return it from cache immediately and trigger an asynchronous reload of this object via the cache loader.
    - request for an object that exists in cache but has not been requested during the 10-20second period blocks the calling code until it is loaded and put into the cahce via the cache loader.
    Here is the entry from our coherence-cache-config.xml
    <distributed-scheme>
    <scheme-name>rankedcategories-cache-all-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <scheme-name>rankedcategoriesLoaderScheme</scheme-name>
    <internal-cache-scheme>
    <local-scheme>
    <scheme-ref>rankedcategories-eviction</scheme-ref>
    </local-scheme>
    </internal-cache-scheme>
    <cachestore-scheme>
    <class-scheme>
    <class-name>com.abe.cache.coherence.rankedcategories.RankedCategoryCacheLoader</class-name>
    </class-scheme>
    </cachestore-scheme>
    <refresh-ahead-factor>.5</refresh-ahead-factor>
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>rankedcategories-eviction</scheme-name>
    <expiry-delay>20s</expiry-delay>
    </local-scheme>

    Hi Leonid,
    Yes, it works as expected. refresh-ahead works approximately like this :
    public Object get(Object oKey) {
    Entry entry = getEntry();
    if (entry != null and entry is about to expire) {
    schedule refresh();
    return entry.getValue();
    If you want to reload infrequently accessed entries you can do something like this (obviously this will not work if cache is size limited) :
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
        <caching-scheme-mapping>
            <cache-mapping>
                <cache-name>fdg*</cache-name>
                <scheme-name>fdg-cache-all-scheme</scheme-name>
            </cache-mapping>
        </caching-scheme-mapping>
        <caching-schemes>
            <distributed-scheme>
                <scheme-name>fdg-cache-all-scheme</scheme-name>
                <service-name>DistributedCache</service-name>
                <backing-map-scheme>
                    <!--
                    Read-write-backing-map caching scheme.
                    -->
                    <read-write-backing-map-scheme>
                        <scheme-name>categoriesLoaderScheme</scheme-name>
                        <internal-cache-scheme>
                            <local-scheme>
                                <expiry-delay>10s</expiry-delay>
                                <flush-delay>2s</flush-delay>
                                <listener>
                                        <class-scheme>
                                            <class-name>com.sgcib.fundingplatform.coherence.ReloadListener</class-name>
                                            <init-params>
                                                <init-param>
                                                    <param-type>string</param-type>
                                                    <param-value>{cache-name}</param-value>
                                                </init-param>
                                                <init-param>
                                                    <param-type>com.tangosol.net.BackingMapManagerContext</param-type>
                                                    <param-value>{manager-context}</param-value>
                                                </init-param>
                                            </init-params>
                                        </class-scheme>
                                </listener>
                            </local-scheme>
                        </internal-cache-scheme>
                        <cachestore-scheme>
                            <class-scheme>
                                <class-name>com.sgcib.fundingplatform.coherence.DBCacheStore</class-name>
                            </class-scheme>
                        </cachestore-scheme>
                        <refresh-ahead-factor>0.5</refresh-ahead-factor>
                    </read-write-backing-map-scheme>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
            <local-scheme>
                <scheme-name>categories-eviction</scheme-name>
                <expiry-delay>10s</expiry-delay>
                <flush-delay>2s</flush-delay>
            </local-scheme>
        </caching-schemes>
    </cache-config>
    package com.sgcib.fundingplatform.coherence;
    import com.tangosol.net.BackingMapManagerContext;
    import com.tangosol.net.DefaultConfigurableCacheFactory;
    import com.tangosol.net.cache.CacheEvent;
    import com.tangosol.util.MapEvent;
    import com.tangosol.util.MultiplexingMapListener;
    import java.util.Map;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.ThreadFactory;
    * dimitri Nov 26, 2008
    public class ReloadListener extends MultiplexingMapListener
        String                                  m_sCacheName;
        DefaultConfigurableCacheFactory.Manager m_bmmManager;
        ExecutorService m_executorService = Executors.newSingleThreadExecutor(new ThreadFactory()
        public Thread newThread(Runnable runnable)
            Thread thread = new Thread(runnable);
            thread.setDaemon(true);
            return thread;
        public ReloadListener(String sCacheName, BackingMapManagerContext ctx)
            m_sCacheName = sCacheName;
            m_bmmManager =
                (DefaultConfigurableCacheFactory.Manager) ctx.getManager();
        protected void onMapEvent(MapEvent evt)
            if (evt.getId() == MapEvent.ENTRY_DELETED && ((CacheEvent) evt).isSynthetic())
                m_executorService.execute(
                    new ReloadRequest(m_bmmManager.getBackingMap(m_sCacheName), evt.getKey()));
        public void finalize()
            m_executorService.shutdownNow();
        class ReloadRequest implements Runnable
            Map    m_map;
            Object m_oKey;
            public ReloadRequest(Map map, Object oKey)
                m_map  = map;
                m_oKey = oKey;
            public void run()
                m_map.get(m_oKey);
    package com.sgcib.fundingplatform.coherence;
    import java.util.Collection;
    import java.util.Map;
    import java.util.Date;
    import com.tangosol.net.cache.CacheStore;
    import com.tangosol.net.CacheFactory;
    import com.tangosol.net.NamedCache;
    import com.tangosol.util.Base;
    public class DBCacheStore extends Base implements CacheStore
         * Return the value associated with the specified key, or null if the
         * key does not have an associated value in the underlying store.
         * @param oKey key whose associated value is to be returned
         * @return the value associated with the specified key, or
         *         null if no value is available for that key
        public Object load(Object key)
            CacheFactory.log("load(" + key + ") invoked on " + Thread.currentThread().getName(),
                CacheFactory.LOG_DEBUG);
            return new Date().toString();
         * Return the values associated with each the specified keys in the
         * passed collection. If a key does not have an associated value in
         * the underlying store, then the return map will not have an entry
         * for that key.
         * @param colKeys a collection of keys to load
         * @return a Map of keys to associated values for the specified keys
        public Map loadAll(Collection colKeys)
            throw new UnsupportedOperationException();
        public void erase(Object arg0)
    // TODO Auto-generated method stub
        public void eraseAll(Collection arg0)
    // TODO Auto-generated method stub
        public void store(Object arg0, Object arg1)
    // TODO Auto-generated method stub
        public void storeAll(Map arg0)
    // TODO Auto-generated method stub
        // Test harness
        public static void main(String[] asArg)
            try
                NamedCache cache = CacheFactory.getCache("fdg-test");
                cache.get("bar"); // this will not be requested and reloaded by the
                                  // listener
                while (true)
                    CacheFactory.log("foo= " + cache.get("foo"), CacheFactory.LOG_DEBUG);
                    Thread.sleep(1000l);
            catch (Throwable oops)
                err(oops);
            finally
                CacheFactory.shutdown();
        }Regards,
    Dimitri

  • Unable to get callback from Asynchronous BPEL process to work (AXIS Client)

    Hello,
    I am calling an Asynchronous BPEL process from an AXIS client, and I am unable to get the callback functionality to work. The AXIS client code has been generated from WSDL2Java using the BPEL process' WSDL file.
    I CAN insert an invoke node in the BPEL process and invoke my Callback web service using that, but obviously that means the BPEL process is limited to only responding to one pre-determined client, which won't work.
    My questions:
    - How does the BPEL process know what endpoint to use to make the callback?
    - Do I need to modify the generated code to create a SOAP Envelope and invoke the process with the envelope, intead of the invokeOneWay call?
    - If I do need to create a SOAP Envelope with a replyto element, what is the structure of a typical BPEL envelope? Is there an example somewhere?
    I have looked at the examples in the interop directory, specifically the AXIS calling Async BPEL, but I would like to try to keep the client code as independent as possible (I don't really want to have a dependency on the OTN library).
    Any help would be greatly appreciated!!
    Thank you.
    -Ryan

    Please have a look at the Binding in the WSDL. Axis must provide the ReplyTo and
    MessageId information there. As far as I see, this must be done by an Axis-Handler,
    because the Binding-Part in not generated by WSDL2Java.
    I was able to generate the JavaClasses by using the "WSDL2Java -a" option, but
    I still do not see how to use them in a handler and how to register the handler.
    Maybe someone can give me a hint.

  • Mail opens in new window, must close window to get to next msg unable to arrow down to next msg?

    mail opens in new window, must close window to get to next msg, unable to arrow down to next msg, help?

    from my son, in mail version 4.5,
    In the "classic layout", at the bottom of your email list, there should be a thin gray bar with a little gray dot in the center.  Hover over that spot until the cursor turns into the "bar arrow" and drag it upward.  You messages should appear below like the second screenshot.  Alternatively, if you are using the newer version of Mac Mail, you could change your Preferences> Viewing to the "new layout". 

  • Unable to install iTunes 11.1.4.62 on Windows 8. I get Service "Apple Mobile Device" (Apple Mobile Device failed to start.  Verify that you have sufficent privileges to start system services.  I am trying to install this on my desktop not a mobile device.

    Unable to install iTunes 11.1.4.62 on windows 8.  I get
    Service "Apple mobile Device) failed to start. 
    Verify that you have sufficient privileges to start system services.
    I am trying to install it on my desktop.  I am also in Administrator mode.  My iTunes stopped working when I was notified that there was a new version of iTunes and would I like to download it. I said yes as always and it was unable to finish the update because of a
    runtime Error!
    Program: C:\program Files (x86)\iTunes\iTunes.exe
    R6034
    An application has made an attempt to load the C runtime library incorrectly.
    Please contace the application's suport team for more information.
    My iTunes stopped working at this time.  I thought I could delete iTunes and start over. This tactic did not work.
    Can anyone make sense of what I am saying and help me to get my iTunes back again?

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I am also unable to get the 551L working with Windows 8 Beta 1. Any advice?

    I am also unable to get the 551L working with Windows 8 Beta 1 and Mac OS X 10.8 Mountain Lion Developer Preview 2. Any Advice?

    It should be noted that I was previously in those Windows Beta's and I am also a member of both Microsoft Technet (Retail Subscription), and all 3 Apple Developer Programs (IOS, Mac and Safari), which is the reason why I am running Microsoft Windows 8 Beta 1 on 2 of my 3 Dell's (the oldest one has Microsoft Windows XP Service Pack 3 and Microsoft Office 2003 on it, which is the PC that I am using the 551L on), and the Mid Year 2010 Apple Mac Mini has Mac OS X 10.8 Mountain Lion Server Edition on it (something that I am technically am NOT supposed to be talking about here due to my NDA so this will be the last time I mention it here (as you can see I am known for being the type of  Computer Nerd that loves Alpha and Beta Testing)! :-)

  • Hello.  Since accepting the upgrade to the current version of I Tunes (11.4) I have been unable to get the application to boot.  I receive the message that I Tunes was not installed correctly and Error 7 (Windows Error 193).

    Hello.  Since accepting the upgrade to the current version of I Tunes (11.4) I have been unable to get the application to boot.  I receive the message that I Tunes was not installed correctly and Error 7 (Windows Error 193).  I have uninstalled/reinstalled I Tunes several times and this has not resolved the issue.  I also uninstalled/reinstalled Microsoft.net Framework 4 since this was suggested by Apple support.  This also has not resolved the issue.
    When I reinstall I Tunes, I get a message that the “Service ‘apple mobile device’ failed to start.”  Verify you have sufficient privileges to start system services.  I attempted to manually start the Apple Mobile Device service but get a pop up stating, “Error 1053: The service did not respond to the start or control request in a timely fashion.”Unsure what I should try next. 

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component, such as Apple Mobile Device Support, won't install normally.
    In your case I suggest you start with a clean download of the setup file using the direct link. If reinstalling AMDS alone doesn't work try tearing everything down again.
    tt2

  • Unable to get Window Handle for the 'AxCrystalActivXViewer' control.

    Hi,
    I have Operating System : Windows 7 and Application developed in VS 2005 and I am using Crystal Report XI licenced version.
    But when I am trying to use TTX(Field Defination) based reports it gives me "Unable to get Window Handle for the 'AxCrystalActivXViewer' control. Windowless ActivX Controls are not supported."
    Please provide me solution for this ASAP as I am stucked on this from long lomg time.
    -Regards
    Swapnil

    Appears you are installing an upgrade version.
    Use these links:
    http://downloads.businessobjects.com/akdlm/crystalreports/crxir2_sp4_full_bld_0-20008684.exe
    http://downloads.businessobjects.com/akdlm/crystalreports/CRYSTALREPORTS06_0-20008684.EXE

  • I am unable to install itunes in my windows 7 laptap. Getting 2349 error code while installing itunes. Any suggestions to overcome?

    I am unable to install itunes in my windows 7 laptap. Getting 2349 error code while installing itunes. Any suggestions to overcome?

    Is this the error your gettings?
    If so, remove the installer, and redownload the itunes set-up installer
    www.apple.com/itunes/download
    Message was edited by: keeferaf

  • On step -- Go to Window Activity. m nt getting Activity in my safari browser. so unable to follow further steps.

    plz help.....on step -- Go to Window > Activity. m nt getting <Activity> in my safari browser. so unable to follow further steps to download youtube videos.

    ClicktoFlash or similar is the easiest way to do that. You can then normally right-click on a list of video resolutions & treat it just as any other file.
    Newer Safari's don't have the same Activity window, although enabling the Develop menu from Safari - Preferences - Advanced gives access to various Web Inspector functions which include listing the page resources, albeit differently from the old way.

  • Client Install Fails - Unable to get Win32_OperatingSystem object

    I have a PC that won't install the SCCM client via Client Push.  In the CCM.Log file on the site server, it connects to the IPC$ and admin$ shares using my client installation account, but then it comes back with this error:
    ---> Unable to get Win32_OperatingSystem object from WMI on remote machine "PCNAME", error = 0x80080005.
    I know that error means that access was denied to WMI, and I verified that when I run wbemtest manually (using the same client installation account), I can connect to the root\cimv2 object on that PC but when I try to enumerate the instances of the Win32_OperatingSystem object, I get the same error.
    I also tried using Computer Management applet (remotely - I have no local access to this PC) to look at the WMI Control properties.  Again, I get the same access denied error so I can't check/change the security permissions that way.
    I have verified that my client installation account is in the local Administrators group of the PC.  I've already tried rebuilding the WMI repository - that worked but it didn't fix the access issue.  I know I can install the client manually but I'm guessing I'd still have a problem with inventories, etc. that are dependent on access to that WMI object.  Any suggestions about how to go about fixing the WMI access issue?
    Thanks so much, --Jo

    Finally getting back to this issue after vacaton... sigh.
    I got a little further.  I took client push out of the mix and ran ccmsetup.exe locally on the PC.  This time the client installation ran.  However, I'm still getting a similar error from the client itself and the client is not talking to the site.  After the client was installed, only about 10 of the log files showed up in system32\ccm\logs. 
    ccmexec.log shows this error: 
    Endpoint'PolicyAgent_PolicyEvaluator' return 0x80070057 from event notification
    PolicyAgentProvider.log has these lines repeating:
    Failed to create actual config class for 'CCM_RootCACertificates' 
    Failed to update namespace 'Machine' (80041002) 
    Successfully updated namespace 'DefaultMachine' 
    Successfully updated namespace 'DefaultUser' 
    Failed to create actual config class for 'CCM_MulticastConfig' 
    Failed to update namespace 'Machine' (80041002) 
    PolicyEvaluator.log has this error:
    Received notification that Local policy has changed. 
    Failed to trigger Machine settings update (80070057)
    SrcUpdateManager has these errors:
    Instance of CCM_SourceUpdateClientConfig doesn't exist in WMI
    Failed to get instance of CCM_SourceUpdateHistory, error 80041002
    ClientIDManagerStartup.log has these errors:
    GetSystemEnclosureInfo failed (0x80080005)
    ComputeHardwareID failed (0x80080005).
    RegTask: Failed to create registration request body. Error: 0x80080005
    The rest of the logs that exist (LocationServices, StatusAgent, ClientLocation, RemCtrl, and setuppolicyevaluator) appear to be OK. 
    These seem to all be WMI-related errors/issues, but I can't find any specific information on any SCCM/SMS websites/forums that address these particular errors in these particular log files.  I've tried rebuilding the repository (several times), I've done the regsvr stuff as discussed above, etc. 
    I ran WMIDIAG next.  It ran for a little less than two hours - not sure if that's normal or not, but the log file continued to update the entire time.  Now I have this log file and I'm not sure what to do with the issues I found.  I'm looking at the WMI REPORT: BEGIN section...  I see instructions that make sense for most of the errors.  However, the section of log file below shows the area that is most likely causing issues for SCCM because it is the same error I get on the client install.  I have no idea how to fix this stuff - any help would be appreciated:
    31997 14:20:05 (1) !! ERROR: WMI ENUMERATION operation errors reported: .......................................... 33 ERROR(S)!
    31998 14:20:05 (0) ** - ROOT/CIMV2, InstancesOfAsync, CIM_USBDevice, 0x80080005 - .
    31999 14:20:05 (0) ** - ROOT/CIMV2, InstancesOfAsync, CIM_USBHub, 0x80080005 - .
    32000 14:20:05 (0) ** - ROOT/CIMV2/SMS, InstancesOfAsync, SMS_Class_Template, 0x80041011 - (WBEM_E_PROVIDER_NOT_FOUND) Provider referenced in the schema does not have a corresponding registration.
    32001 14:20:05 (0) ** - Root/Default, InstancesOf, SystemRestore, 0x80080005 - Server execution failed.
    32002 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Process, 0x80080005 - Server execution failed.
    32003 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_OperatingSystem, 0x80080005 - Server execution failed.
    32004 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_ComputerSystem, 0x80080005 - Server execution failed.
    32005 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Service, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32006 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_Bios, 0x80080005 - Server execution failed.
    32007 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_IP, 0x80080005 - Server execution failed.
    32008 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_TCP, 0x80080005 - Server execution failed.
    32009 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_UDP, 0x80080005 - Server execution failed.
    32010 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_Tcpip_ICMP, 0x80080005 - Server execution failed.
    32011 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Cache, 0x80080005 - Server execution failed.
    32012 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Memory, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32013 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Objects, 0x80080005 - Server execution failed.
    32014 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_PagingFile, 0x80080005 - Server execution failed.
    32015 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_Processor, 0x80080005 - Server execution failed.
    32016 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfOS_System, 0x80080005 - Server execution failed.
    32017 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfProc_Process, 0x80080005 - Server execution failed.
    32018 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfRawData_PerfProc_Thread, 0x80080005 - Server execution failed.
    32019 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_IP, 0x80080005 - Server execution failed.
    32020 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_TCP, 0x80080005 - Server execution failed.
    32021 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_UDP, 0x80080005 - Server execution failed.
    32022 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_Tcpip_ICMP, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32023 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Cache, 0x80080005 - Server execution failed.
    32024 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Memory, 0x80080005 - Server execution failed.
    32025 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Objects, 0x80080005 - Server execution failed.
    32026 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_PagingFile, 0x80080005 - Server execution failed.
    32027 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_Processor, 0x80080005 - Server execution failed.
    32028 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfOS_System, 0x80080005 - Server execution failed.
    32029 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfProc_Process, 0x80080005 - Server execution failed.
    32030 14:20:05 (0) ** - Root/CIMv2, InstancesOf, Win32_PerfFormattedData_PerfProc_Thread, 0x80080005 - Server execution failed.
    32031 14:20:05 (0) **
    32032 14:20:05 (1) !! ERROR: WMI EXECQUERY operation errors reported: ............................................ 17 ERROR(S)!
    32033 14:20:05 (0) ** - Root/Default, SELECT * FROM SystemRestore, 0x80080005 - Server execution failed.
    32034 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_LogicalDisk WHERE FreeSpace > 10000000 AND DriveType = 3, 0x80080005 - Server execution failed.
    32035 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_PageFileUsage, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32036 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_BIOS WHERE Version IS NOT NULL, 0x80080005 - Server execution failed.
    32037 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_NetworkAdapter WHERE AdapterType IS NOT NULL AND AdapterType != "Wide Area Network (WAN)" AND Description != "Packet Scheduler Miniport", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32038 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_Processor WHERE Name IS NOT NULL, 0x80080005 - Server execution failed.
    32039 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DiskDrive, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32040 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_ComputerSystem, 0x80080005 - Server execution failed.
    32041 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DiskPartition, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32042 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_LogicalDisk WHERE Description != "Network Connection", 0x80080005 - Server execution failed.
    32043 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_SoundDevice, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32044 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_VideoController, 0x80080005 - Server execution failed.
    32045 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_USBController, 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32046 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_DesktopMonitor, 0x80080005 - Server execution failed.
    32047 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_PointingDevice WHERE Status = "OK", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32048 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_Keyboard, 0x80080005 - Server execution failed.
    32049 14:20:05 (0) ** - Root/CIMv2, SELECT * FROM Win32_SystemDriver WHERE StartMode != "Disabled", 0x80041013 - (WBEM_E_PROVIDER_LOAD_FAILURE) COM cannot locate a provider referenced in the schema.
    32050 14:20:05 (0) **
    32051 14:20:05 (0) ** WMI PUT operations: ........................................................................ OK.
    32052 14:20:05 (0) ** WMI DELETE operations: ..................................................................... OK.
    32053 14:20:05 (0) ** WMI GET VALUE operations: .................................................................. OK.
    32054 14:20:05 (0) ** WMI static instances retrieved: ............................................................ 1541.
    32055 14:20:05 (0) ** WMI dynamic instances retrieved: ........................................................... 0.
    32056 14:20:05 (0) ** WMI instances request cancellations (to limit performance impact): ......................... 0.
    32057 14:20:05 (0) **
    32058 14:20:05 (0) ** 38 error(s) 0x80080005 - (WBEM_UNKNOWN) This error code is external to WMI.
    32059 14:20:05 (0) **
    32060 14:20:05 (0) ** 1 error(s) 0x80041011 - (WBEM_E_PROVIDER_NOT_FOUND) Provider referenced in the schema does not have a corresponding registration
    32061 14:20:05 (0) ** => This error is typically due to the following major reasons:
    32062 14:20:05 (0) **    - The application queried by the WMI provider is not installed, not available or not running
    32063 14:20:05 (0) **      at the time of the request was made. This error can also be generated because
    32064 14:20:05 (0) **      the application supporting the providers has been uninstalled.
    32065 14:20:05 (0) **    - The WMI provider binary files are not accessible (e.g. access denied ACL).
    32066 14:20:05 (0) **    - A WMI provider registration problem at the CIM level (MOFCOMP.EXE) or at the COM level (REGSVR32.EXE).
    32067 14:20:05 (0) **      You must re-register the WMI provider by recompiling its associated MOF file with MOFCOMP.EXE
    32068 14:20:05 (0) **    Note: - If the WMI provider DLL CIM and COM registrations are correct, this error can
    32069 14:20:05 (0) **            be returned because the provider has a dependency on another DLL that cannot be
    32070 14:20:05 (0) **            loaded (missing or bad DLL)
    32071 14:20:05 (0) **          - Dependencies can be found with the DEPENDS.EXE tool coming with the
    32072 14:20:05 (0) **            Windows XP and Windows 2003 Support Tools. The command line is as follows:
    32073 14:20:05 (0) **            e.g. DEPENDS.EXE <PATH><Provider.DLL>
    32074 14:20:05 (0) ** => If the software has been de-installed intentionally, then this information must be
    32075 14:20:05 (0) **    removed from the WMI repository. You can use the 'WMIC.EXE' command to remove the provider
    32076 14:20:05 (0) **    registration data and its set of associated classes.
    32077 14:20:05 (0) ** => To correct this situation, you can:
    32078 14:20:05 (0) **    - Install or start the application supporting these providers.
    32079 14:20:05 (0) **    - Register the providers in CIM (MOFCOMP) or DCOM (REGSVR32).
    32080 14:20:05 (0) **    Note: In this case the provider should also be listed in the 'missing WMI
    32081 14:20:05 (0) **          provider DCOM registrations' or in the 'missing WMI provider files' section.
    32082 14:20:05 (2) !! WARNING: Re-registering with REGSVR32.EXE all DLL from 'C:\WINDOWS\SYSTEM32\WBEM\'
    32083 14:20:05 (0) **          may not solve the problem as the DLL supporting the WMI class(es)
    32084 14:20:05 (0) **          can be located in a different folder.
    32085 14:20:05 (0) **          You must refer to the class name to determine the software delivering the related DLL.
    32086 14:20:05 (0) **
    Thanks, --Jo

  • New MacBook Pro, unable to get past the select your country screen during initial setup.

    I purchased a new MacBook Pro last night and am unable to get past the initial setup screen where you select your country.  The mouse will move around, but won't actually allow me to click on 'continue'.  I've also tried the keyboard commands to move to the next screen.  Nothing...

    I just experienced this, and I am recording the solution here for posterity. I got through the setup using the keyboard (tab to move between controls and space to select), thinking that the mouse click would work when I got through it. But I was dismayed to find that it did not ...
    ... at least so I thought! But actually, you have to push down the mouse pad, NOT just tap it. You can turn on tap-to-click later, but at the start you must push it until it audibly clicks. It is not obvious if you are used to Windows laptop mouse pads like me, where tap-to-click is the ubiquitous norm.

  • ITunes no longer works on my Windows VISTA system.  Get error msg saying C runtime library incorrectly... Error 7, Windows error 1114..

    iTunes no longer works on my Windows VISTA system.  Get error msg saying an application is attempting to access C runtime library incorrectly... Error 7, Windows error 1114.  Same msg, or one that says unable to install, when trying to update or reinstall iTunes.  iTunes worked well up until about a month ago when this error msg starting appearing.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Sony DCR-DVD505 Handycam: Unable to get video clips, audio

    Evaluating Adobe Premier.  Hopefully helpful for other Sony DCR-DVD505 users.
    Objectives:
    1) Get videos from Sony DCR-DVD505 handycam into Premier Elements
    2) Drag and drop various clips into Sceneline
    3) Insert menu markers
    4) Burn DVD
    Stuck in Step 1, getting video from handycam, unable to get video clips (with audio)
    First Try: NO AUDIO.
    The Sony DCR-DVD505 burns a mini-DVD (1.4 GB) while recording.  After "finalizing" the disk, the media may be imported into the computer.  Streaming was supported by Windows XP driver but is no longer supported in Windows Vista.   In fact, Vista Service Pack 2 (SP2) does not even recognize the camera as a DVD drive!  So downgraded to Vista SP1 and used the Sony Picture Motion Browser to import media into computer as MPG files.  Each MPG file is a clip (corresponding exactly to camera record on-off sequence while shooting).  Then opened up Adobe Premier Elements 8.  Used get media to import all the MPG clips into "Organize".  Dragged and dropped various clips...inserted a menu or two and...burned the DVD.  PROBLEM: VIDEO OK, BUT NO AUDIO(?!).  The MPG files on computer play fine (with audio) inside Windows Media Players.  Read all sorts of nonsense about why Adobe Premier (probably old versions) cannot work with "low-quality/compressed" MPG and needs to be a particular type AVI soo....
    Second Try: Capture VOB directly
    Forget the camera.  Insert the mini-DVD directly into computer DVD drive, create a new project and followed directions from  "Lowdown on VOB" http://forums.adobe.com/message/2117743 and "tools to convert to DVI" http://forums.adobe.com/thread/415317.  I loaded the VOB directly and dropped them into  Timeline as advised by the second post (only hitch being the first VOB pertaining to the DVD menu is not recognized and is neither needed).
    However, File > Export is always GREYED out (unusable).  And the status at bottom right seems to be looping on "Background Rendering".  DO I WAIT?  In any case, the whole video is showing up as a single continuous stream and what I want are the clips from the camera?! 
    Then I tried Prism (again as per the second forum post mentioned above).  It simply did something to process 30 minutes of video and crashed in the end without explanation - saying there was an error in conversion.
    Is this AVI conversion even a good idea?  How would I get my clips back??
    Bottomline.  My mini-DVD and imported MPGs plays fine in Windows Media Player.  However unable to extract the camera clips (with audio).

    Dawg, I have the Sony DCR-DVD305, and have been using it successfully for quite a while with PE7, with few issues, once I had a workflow nailed down.
    I believe the 505 is basically the same camera, with some additional features.
    This workflow worked for me in the past so I'll pass that along:
    Sony Browser to PC as Mpeg.
    Mpeg to Windows Movie Maker, output to DV-AVI, taking default settings.
    DV-AVI imported into PE7.
    This should also work for PE8.
    Upon getting Cyberlinks PowerDirector v7, my new workflow changed to this:
    I take the min-DVD directly from camcorder to my PC, and capture the disk via Power Director.
    PD will convert the VOB's directly to DV-AVI Type 2 on one pass.
    I then load this DV-AVI into PE7.
    (PD v7 was pre-installed on my new PC from HP, or it can be purchased from Cyberlink).
    Other options to try:
    Copy the VOB's directly from the mini-DVD to your PC and use Prism to convert these to AVI.
    Or load the VOB or Mpeg into PE, then use that to convert to AVI.
    (Export to DV-AVI with PE8 is done with SHARE/PC, not Export under the File Menu, which is greyed out).
    I've had many issues trying to work with Mpeg's and VOB's when loaded directly to PE with limited success.
    So if you can get it converted successfully to AVI outside of PE, I've found this to be a better approach.
    Post results, if any of this works for you...
    Note: One other thing, if you are working directly with VOB's to PE, especially multiple VOB's from a single DVD, you can encounter out-of-sync issues between video and audio. If this occurs, review this link from Muvipix:
    http://muvipix.com/phpBB3/viewtopic.php?f=38&t=2469:

  • Unable to get RequestDispatcher for Context

    Eclipse 3.3.0
    Tomcat 6.0.16
    Java 1.5.0_13
    Mac OS X 10.5.6
    Greetings:
    I'm attempting to retrieve information cross context in my web application. I've attempted to enable cross context access by three means.
    - I've added "crossContext=true" to the <Context> element in the server.xml of the Tomcat configuration under the Servers project of my workspace.
    - I've added "crossContext=true" to the <Context> element in a META-INF/context.xml in the WebContent folder of my project.
    - I've added "crossContext=true" to the <Context> element of the context.xml file in the conf directory of the Tomcat installation directory.
    Yet despite these changes I'm still seeing "Unable to get RequestDispatcher for Context....Verify values and/or enable cross context access" in the console. What do I need to do to enable cross context access using Eclipse? Thanks for any help.
    ETA - I've had this working before. I believe that I upgraded to Tomcat 6 from Tomcat 5.5 and that's when the jstl cross context actions broke.
    ETA - I've got it working in Tomcat 6. The problem arises when I change the name of my webapplication from "foo" to ROOT inside eclipse. I want a jsp page in the ROOT web application to be able to access a servlet in the "bar" web application.
    Edited by: nantucket on May 17, 2009 2:17 PM
    Edited by: nantucket on May 17, 2009 2:26 PM

    Thanks for your reply evnafets.
    How many times do you declare your context???I know, I know... I got frustrated. :o)
    But seriously, since my post I've discovered that it is "working" but not in the manner I had expected within the IDE. That is, if I access the page at
    http://localhost:8080/ROOT/myPage.jspThen I can see the contents retrieved from the context bar. But if I use.
    http://localhost:8080/myPage.jspI can see that the page somehow has been deployed to the root context, but the error code 500 appears in place of where the content from the bar context should be.
    However, if I export war files for these two web applications and run them in Tomcat 6 outside of Eclipse, everything works as it should. So this is an eclipse issue with respect to deploying a web application to the root context. Maybe there is some configuration about that I must make somewhere.
    I hope that makes sense.
    Anyhow, the server.xml file contains the following..
    <Context crossContext="true" docBase="bar" path="/bar" reloadable="true" source="org.eclipse.jst.j2ee.server:bar"/>
       <Context crossContext="true" docBase="ROOT" path="/ROOT" reloadable="true" source="org.eclipse.jst.j2ee.server:ROOT"/>The jstl code in the jsp page accessing the context bar is the following.
    <c:import url='/helloworld?action=view' context='/bar' />

Maybe you are looking for

  • I want to transfer my library and all of the settings and playlists to my new computer

    I am interested in moving my entire library from one PC to another.  I want to keep all of my playlists and settings (ratings) so I don't have to do them again.  I have an external drive and have followed all of the steps from itunes four seperate ti

  • My Shuffle no longer recognized in Windows

    I am having trouble with my 1 GB shuffle. It had been working rather well for several months but now it is not recognized by XP Pro or iTunes. It does however get charged when I connect it to the USB port. Also, the USB subsytem on my computer does w

  • All of the free music that comes with iMovie is suddenly missing. How do I get it back?

    I wanted to start a new project in iMovie, and I realized all of the iLife music is gone. I'm not talking about my iTunes songs, which are all there. I'm talking about the free music that comes with iMovie/iLife. I used some of the music in a previou

  • Variable on atribute

    Hi all, I have  material group as attribute of material in Query designer.now i need to have variable on material group.How can i do it? regards murali

  • Delegate in as3

    This probably is trivial but I am not sure what the problem is. I am trying to call an event listener for a button. The problem is I have many buttons each with a string variable attached to them so that the click function can go to the frame name th