I am a geezer. My PC cannot load Super Fetch at boot time. What did I delete in my tidy, tidy, tidy?

Hi Gang,
OK, I have been sick for sixteen years, about as long as the Target hacker has been alive. I will be 67 in a few weeks. My PC tells me it cannot load SuperFetch at boot time. What did I clobber? I saved the message as offered.
Thanks,
Al Marcy

Hi,
Could you please post the complete event log
here? Was this error message  related with superfetch service? The error message here seems to be mostly associated with .Net framework.
Few more questions here, what actions had been taken before the error occurred? Have you checked if any viruses attacked? In addition, please take a try with system file checker.(More infor
for SFC).
Regarding SuperFetch, it caches data to RAM so that it can be immediately available to your application. Sometimes this can affect the performance of certain applications. It tends to not work
well with gaming, but can improve performance with business apps. And this service is dependent on the following system components:
File Information FS MiniFilter
FltMgr
Remote Procedure Call (RPC)
DCOM Server Process Launcher
RPC Endpoint Mapper
More information, please check
superfetch in:
Threats and Countermeasures Guide: System Services
To see if superfetch is disabled or not, please check the steps below:
1. Click the Start orb and type Regedit in the Start Search area.
2. Open the Registry Editor.
3. Click the plus sign next to HKEY_LOCAL_MACHINE
    then SYSTEM
    then CurrentControlSet
    then Control
    then Session Manager
    then MemoryManagement
    then click PrefetchParameters
4. On the right side, double-click on EnableSuperfetch
5. Check the value of it, it is set to
3 by default on win7:
Values:
0 to disable Superfetch
1 to enable prefetching when program is launched
2 to enable boot prefetching
3 to enable prefectching of everything
Hit OK then Close RegEdit. "
Then goto the services MSC ("windows key + r" or just "windows key" and type
services.msc). Scroll down to Superfetch and now should start. Double click it and change to automatic, then attempt to start again.
If we fail to start this service, I suggest we
export following keys from the computer on Which Windows 7 works fine, and then import to your computer to repair this service. On the good win7 PC:
Navigate to :
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\SysMain
Right click on the
SysMain, choose export, and then move the export file on the problematic PC, double click the file.
Hope this helps,
Best regards
Michael
If you have any feedback on our support, please click
here.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • Any restriction on Mac that binaries running from root dirs like /usr/libexec/ cannot load dylib's at run-time?

    Hi all,
    Is there any restriction on Mac OS X 10.6/10.7 that binaries running from root directories like /usr/libexec/ cannot load dylib's at run-time using dlopen() or NSAddImage()?
    I am trying to run a binary like "sample" from a directory inside /usr/libexec/ which tries to load a dylib like "sample.dylib" which is present in the same directory as "sample".
    It resulted in a segmentation fault with the following error and stack-trace.
    Program received signal EXC_BAD_ACCESS, Could not access memory.
    Reason: KERN_INVALID_ADDRESS at address: 0x0000000000003430
    0x0000000000003430 in ?? ()
    Using gdb, I could find out that the program crashed inside dlopen() (the path passed to dlopen() being a simple filename like "sample.dylib").
    The dlopen() at the top of the stack-trace pasted below gets called around 10 times; it does not crash during this 2nd level dlopen() any-time.
    #0  0x00007fff81be9e93 in dlopen ()
    #1  0x00007fff82838f7f in map_images_nolock ()
    #2  0x00007fff82821bc0 in map_images ()
    #3  0x00007fff5fc039b9 in __dyld__ZN4dyldL18notifyBatchPartialE17dyld_image_statesbPFPKcS0_jPK15dyld_imag e_infoE ()
    #4  0x00007fff5fc0c839 in __dyld__ZN11ImageLoader4linkERKNS_11LinkContextEbbRKNS_10RPathChainE ()
    #5  0x00007fff5fc04d48 in __dyld__ZN4dyld4linkEP11ImageLoaderbRKNS0_10RPathChainE ()
    #6  0x00007fff5fc08f68 in __dyld_dlopen ()
    #7  0x00007fff81be9ec0 in dlopen ()
    #8  0x000000010002694f in AAA ()
    #9  0x0000000100026730 in XXX ()
    #10 0x0000000100026494 in YYY ()
    #15 0x00000001000566a9 in main (argc=7, argv=0x7fff5fbff810) at ../../main.c:50
    After this 2nd level dlopen() gets called 10-15 times, the stack will unwind from map_images_nolock () till  __dyld_dlopen (). But when it tries to finish all the instructions inside  __dyld_dlopen () and step out of it, the program crashes with the EXC_BAD_ACCESS signal.
    Please find below the final stack-traces obtained during debugging when I put breakpoints for AAA() and dlopen() and went on stepping inside till the program crashed.
    (gdb) bt
    #0  0x00007fff5fc04d48 in __dyld__ZN4dyld4linkEP11ImageLoaderbRKNS0_10RPathChainE ()
    #1  0x00007fff5fc08f68 in __dyld_dlopen ()
    #2  0x00007fff81be9ec0 in dlopen ()
    #3  0x000000010002694f in AAA ()
    #4  0x0000000100026730 in XXX ()
    #5  0x000000010002663c in YYY ()
    #11 0x00000001000566a9 in main (argc=7, argv=0x7fff5fbff7f0) at main.c:50
    (gdb) step
    Single stepping until exit from function __dyld__ZN4dyld4linkEP11ImageLoaderbRKNS0_10RPathChainE,
    which has no line number information.
    0x00007fff5fc08f68 in __dyld_dlopen ()
    (gdb) bt
    #0  0x00007fff5fc08f68 in __dyld_dlopen ()
    #1  0x00007fff81be9ec0 in dlopen ()
    #2  0x000000010002694f in AAA ()
    #3  0x0000000100026730 in XXX ()
    #4  0x000000010002663c in YYY ()
    #10 0x00000001000566a9 in main (argc=7, argv=0x7fff5fbff7f0) at ../../main.c:50
    (gdb) step
    Single stepping until exit from function __dyld_dlopen,
    which has no line number information.
    Program received signal EXC_BAD_ACCESS, Could not access memory.
    Reason: KERN_INVALID_ADDRESS at address: 0x0000000000003430
    0x0000000000003430 in ?? ()
    To summarise:
    For some reason, a user wants to install a product and its binaries under /usr/libexec/.
    This binary tries to dynamically load a dylib using dlopen("sample.dylib", RTLD_LAZY | RTLD_LOCAL).
    It looks like, the dynamic linker then opens dependent dylibs and runs module initialisers. Then crashes when returning (which sounds like a trashed stack).
    Can anyone please tell me whether there is some OS-imposed restriction or OS bug which can explain this type of behaviour?
    (Note: The crash does not occur if the binary and dylib are installed under a normal user's home directory and run from there.)
    Many thanks,
    Vinay

    The otool output for the binary and dylib are pasted below.
    localhost:Latest dev$ otool -L /usr/libexec/Dipu/sample/sample
    /usr/libexec/Dipu/sample/sample:
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 476.18.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.4.0)
    /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.1.4)
    localhost:Latest dev$ otool -L /usr/libexec/Dipu/sample/sample.dylib
    /usr/libexec/Dipu/sample/sample.dylib:
    libProduct.dylib (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon (compatibility version 2.0.0, current version 136.0.0)
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.4.0)
    /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.1.4)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 476.18.0)

  • My ipod nano 6th gen. is connected to my MacBook.  I have an audio book on the MacBook in Itunes, and cannot load it into the Ipod.  What am I doing wrong?

    My ipod nano 6th gen. is connected to my MacBook.  I have an audio book on the MacBook in Itunes, and cannot load it into the Ipod.  What am I doing wrong?

    Is this audiobook configured to sync to your iPod via it's Books configuration pane in iTunes?  Click on your iPod's device name under Devices in the left hand pane of iTunes.  This will bring you to the Summary tab.  Look for the Books tab along the top and click on it.
    B-rock

  • My phone iPhone 5c is stuck on the loading screen when you boot up, what can i do to fix it?

    My iPhone 5c is stuck on the loading screen when you boot up, what can i do to fix it?

    Try a reset.  Hold the on/off and home buttons together for about 10 seconds till the Apple logo appears.

  • HT5661 I would like to erase my iPhone from my iCloud accout, but my iPhone cannot be found. iCloud is searching for a long time, what did I do wrong?

    I sold my iPhone last week, however I forgot to delete it from iCloud. I restored my phone before shipping it. Now I'm trying to delete it from iCloud, but it cannot be found.
    Thanks for the help.

    You don't need to find, just remove it. That feature usually shows up next to phone's name like a little crosshair, if you hover with your mouse cursor. Sometimes phone needs to be turned off for that, but it sounds like it is already wiped and should work.

  • Loading java programme at boot time

    hiiiii everybody,
    can anyone tell me how to load java programme automatically at the time of windows or linux startup i.e. when machine boot. please let me know at [email protected]
    thanks in advance.

    Search - windows startup
    Search - linux startup

  • I cannot find my icloud on my mac.what if i deleted it?, I cannot find my icloud on my mac.what if i deleted it?

    How can I return my Icloud if I deleted it accidently ?

    The minimum requirement for iCloud is Lion 10.7.2 (Mountain Lion preferred): the iCloud Preference Pane does not appear on earlier systems - the MobileMe pane appears on Lion and earlier but is non non-functional - you cannot now open or access a MobileMe account.
    You can set Snow Leopard up to access the email on an existing iCloud account which has been set up on a compliant device, and you may be able to sync iCal using an unsupported (and possibly unreliable) hack, but no other facilities will work. You cannot open an iCloud account on Snow Leopard.
    This page outlines the limited use you can make of an existing iCloud account with Snow Leopard:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudSL.html
    To make full use of iCloud you will have to upgrade your Mac to Lion or Mountain Lion, provided it meets the requirements.
    The requirements for Lion are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    To purchase it you will have to ring Apple at the number given at the bottom left of this page.
    The requirements for Mountain Lion are listed here:
    http://www.apple.com/osx/specs/
    It is available from the Mac App Store (in Applications). (If you are currently pre-Snow Leopard you will have to upgrade to that to access the Mac App Store: it's available in the online Apple Store.)
    You should be aware that PPC programs (such as AppleWorks) will not run on Lion or above; and some other applications may not be compatible - there is a useful compatibility checklist at http://roaringapps.com/apps:table

  • Loading application at the boot time

    Hi all!
    Maybe somebody can answer my question:
    How can I run my application at the boot time?
    Thanks

    We also have similar requirements. We are starting our script (which starts lot of processes) through inittab with options set to "once". We want this script to be executed only once in run level "3". But we noticed that the script is executed every time system moves into state "3".
    Is there any way by which we can execute the process only during boot time and not otherwise?
    Thank you for help
    Dhananjay Joshi

  • Firefox cannot load websites but other programs can

    Firefox cannot load any webpages, but IE can.
    I have tried everything suggested. This problem happened befoer I updated Firefox and did not resolve after I updated firefox.
    I tried changing internet settings, disabling firewall, and even disabling IVP6, but nothing is working.

    Have you already seen [[firefox cannot load websites but other programs can]]
    *What exactly happens, or does not happen and do you get any error messages ?
    *Is it all websites you have a problem with, or only some ?
    * What happens if you work offline, can you load web pages that are saved on your own computer ? <br> (save something with IE, -as HTML web page files - maybe this page, then try opening it with both Firefox and IE)
    Can you use firefox to look at your local disk such as (depending on your setup) ''file:///C:/''
    Try checking security settings, and security logs, is firefox being blocked ?

  • Firefox cannot load websites but other browser can

    background - family community home pc...mozilla worked great for the longest time (along side IE)...all of a sudden mozilla can't connect to any website...IE always can (yuk)
    troublshooting steps (still can't connect to web w/firefox):
    1. Removed Mozilla, re-installed, same results
    2. Searched for all mozilla folders. Deleted two folders and also daughter's mozilla iphone folder. Removed Mozilla, re-installed, set connection to "no proxy", same results.
    3. Ran "House Call" - no malware found.
    Help! do not like IE!

    Have you already seen [[firefox cannot load websites but other programs can]]
    *What exactly happens, or does not happen and do you get any error messages ?
    *Is it all websites you have a problem with, or only some ?
    * What happens if you work offline, can you load web pages that are saved on your own computer ? <br> (save something with IE, -as HTML web page files - maybe this page, then try opening it with both Firefox and IE)
    Can you use firefox to look at your local disk such as (depending on your setup) ''file:///C:/''
    Try checking security settings, and security logs, is firefox being blocked ?

  • Firefox cannot load websites, but other programs can. Listed guide/faq not effective.

    I went through the FAQ guide for firefox not loading webpages, but after having changed both boolean setting in the about:config section of the firefox advanced settings, deleting and re-adding it to the program permissions list in my firewall (mcafee antivirus 2011), and even attempting to completely disable the firewall for a period of time, I am still unable to browse the internet on firefox. Internet explorer, however, does work.

    Have you already seen [[firefox cannot load websites but other programs can]]
    *What exactly happens, or does not happen and do you get any error messages ?
    *Is it all websites you have a problem with, or only some ?
    * What happens if you work offline, can you load web pages that are saved on your own computer ? <br> (save something with IE, -as HTML web page files - maybe this page, then try opening it with both Firefox and IE)
    Can you use firefox to look at your local disk such as (depending on your setup) ''file:///C:/''
    Try checking security settings, and security logs, is firefox being blocked ?

  • HT5457 When Open passbook in my iPhone 4S and tapped on the App Store it says cannot connect to apple iTunes Store. What am I doing wrong?

    I updated my iPhone 4S with the new iOs 6. It was successfully installed, but when I open passbook app and tapped App Store I get this message saying cannot connect to apple iTunes Store . What did I do wrong?

    Try connecting to your Mac or PC and using iTunes to sync your iPhone. Disconnect your iPhone after syncing, make sure in Settings>iTunes&AppStore you have your Apple ID and password entered, and launch App Store and sign in. It should work now, but do not sign out from App Store. There seems to be a bug that prevents us from signing in again after signing out.

  • Using Firefox to access facebook chat Button or online friiend chat button generates a Black screen with CANNOT LOAD IMAGES and no chat window opens.

    This does not happen in other browsers and it happens on a variety of computers I have access to and would seem to be a common problem but I can find no identical cases in my searches of
    Firefox , Facebook or windows help or Google search. My home machine is only a P2 with WINXPCORP but works fine and I have done all updates but still have this continuing problem every time I try to use Firefox
    to access Facebook chat but it does not happen with IE or chrome
    The response to clicking on chat button or friend chat is a black screen with small center square box with blue title bar that says
    '' VIEW IMAGE FULL SCREEN - (42) FACEBOOK X""
    center of box is ""! "" mark in yellow triangle and wording
    "" CANNOT LOAD IMAGES ''' OK
    clicking on OK returns to facebook page but no chat opens.
    Some times |VERY RARLEY if as the page loades you click on
    chat button with 1/2 second of it appearing chat will open.

    Hi,
    Please also see [https://support.mozilla.org/en-US/kb/Problems%20using%20Facebook%20in%20Firefox this.]

  • Error while starting essbase after Installation: Cannot load $DM_APP$

    Hi,
    I have installed Essbase on solaris. After installation when I start Essbase it started successfully but with an error:
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Error(1052003)
    Timed out reading from server
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Error(1054001)
    Cannot load application $DM_APP$ with error number [1052003] - see server log file
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Warning(1051221)
    Creation of Datamining Object Management Application Fails with status [1054001]
    I have verified all the evnironment variables they are set correctly same as one of our other environments.
    I would really appreciate if some can help me troubleshoot this.
    Thanks and Regards,
    Vamshi

    Finally Found that the JVM path is set inccoretly.This should be the path to be set: $HYPERION_HOME/common/JRE/Sun/1.5.0/lib/sparc/server
    Thanks and Regards,
    Vamshi

  • Error message: Cannot load the rpt file

    Can anyone please help.
    I created a Crystal Report which I deployed into Business One. Tested this report on about 13 machines running Business One and all running well except one machine where it comes up with the following error messages:
    1: Cannot load the rpt file
    2: Object reference not set to an instance of an object
    3: Invalid report file path
    I have tried logging into Business One on that machine as a different user and encountered the same issue. Then logged onto another machine as the user who uses the machine with the error message and her profile works well on another machine.
    This is leaving me with concluding this problem could be down to the machine but cannot figure out how to fix it.
    Does anyone have any ideas to solving this?
    Thanks
    Tony

    Hi Tony,
    On the troubled computer, check in Control Panel whether Crystal Report Runtime is installed. If not, un-install client app and re-install from B1_Shr client's folder. The first thing that it will do is to instal Crystal Report Runtime.
    Source: when I did an upgrade on a client recently this happened. After troubleshooting everything I found that this issue is a hit-and-miss as some PCs had it some don't. I started comparing between working and non-working PC and found this is the only difference I could found.

Maybe you are looking for

  • Error while opening excel file

    Hi... I m facing problem with excel file....when i used to open file its saying "file cannot be creating" But when i try from my PC it is not showing any error... Plz kindly suggest me any solution. Regards Meenakshi

  • Bookmarks not working in iBooks author

    I am unable to create a bookmark in iBooks author. The "+"-sign in the bookmarks pane of the inspector is faded/unclickable when I select an element on one of the pages (figure, text box, image etc.). I have been reading up on solutions and workaroun

  • Tempo information in Logic 9

    Drums were recorded at friends studio to drummers click in headphones. Tempo was not set in logic. All songs were recorded to 120 bpm but the real tempo of songs varies. I've found I can export files [aaf] and load them into a new song [with the corr

  • Accessing EP 6 in PDA

    Hi, There are some users who will be accessing our portal through GPRS netowrk. As of now we don't have the actual GPRS set up so we are trying to check the portal access in a PDA phone which has got GPRS connectivity. We tried accessing our enterpri

  • Problem in calling single entity bean from other beans

    Hi, I am implementing session facade with SUN's J2EE 1.3 deploy tool for JBoss server. I have a entity bean UserBean which creates users in database ( create() )and tells if user exists or not ( findByPrimaryKey() ). Initially, I had implemented User