How to permanently disable Windows Defender?

Windows Defender won't stay disabled.  I searched through the threads and saw several others have had this problem but the issue has apparently never been resolved.  I removed Windows Defender from startup using MSCONFIG, disabled it from the GUI
that's accessible through the Control Panel, and disabled the service through the Administrative Services > Services panel, yet the program is still re-enabling itself after every reboot.  
I searched around but saw no "Fix-It" articles or anything suggesting that Microsoft has any interest whatsoever in trying to resolve this issue.  Does anyone know of a registry hack or a third-party tool that will knock out Windows Defender
permanently? 

As per the link provided by
Cyber_Defend_Team it should be disabled... 
But in rare case it wont completely disabled.. At this point you can do a registry trick and reboot.. Beforeo ahead backup the registry key ... 
1)Then change directory to the location where you have extracted the PSTools.zip
(Mine it is C:\Users\araa\Desktop\PSTools )
(2) open registry editor with psexec  with following parameters.. -s -i -d 
The command should be psexec -s -i -d regedit
Then registry editor will be opened and navigate to this path
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender]
Double click on REG_DWORD  "DisableAntiSpyware" and
make that value to 1.
http://www.windowstechinfo.com/2013/10/solved-application-failed-to.html
Reboot

Similar Messages

  • How to permanently disable this message: "Press Esc to exit full screen." (by Adobe Flash Player) in Mac's Safari Browser?

    Hello everyone,
    I have been searching for sometime (without any success) for a solution to permanently remove this annoying message: "Press Esc to exit full screen."
    Whenever I go to full screen mode, watching any video on YouTube, BBC, CNN (or many other websites which use Adobe Flash Player for streaming video) I have to bare seeing this message for several seconds until it fades away. Seeing this message once or twice would have been okay, but as we all watch many videos on a daily basis on internet, after weeks, months and now years seeing this message over and over again many times every day, it becomes very annoying, and I find myself rewinding many videos to their beginning after this message fades away to be able to watch it from the beginning without anything obstructing it!
    Does anyone know how to "permanently" disable this message from appearing?
    I am using the latest version of Safari 6.0 on the latest version of OS X (Mountain Lion 10.8.1), and have the latest version of Adobe Flash Player (Plug-in version 11.4.402.265) installed on my new MacBook Pro 15" with Retina Display.
    Thanks,
    Ally
    Thursday, September 13th, 2012

    Thanks Carolyn,
    I am attaching a screenshot here for you to see that this setting was already set to what you suggested. I didn't need to change it as it was like this even before I post this message.
    So the problem still presists and unfortunately your suggestion is not a solution to this probelm.
    Last night I did more reseach and found a discussion in Adobe website, it seems a lot of other people have the same issue, and even started a discussion in Adobe website about it. But unfortunately Adobe refuses to address it and enable the end user at least to have an option to turn this message off from displaying permanently on his/her computer.
    I am writing down the url links for the two posts regarding this issue on Adobe's website:
    Link #1: http://forums.adobe.com/thread/921270
    Link #2: https://bugbase.adobe.com/index.cfm?event=bug&id=3058752
    Hopefully more people will get involved and ultimately we will either get Adobe's attention, or someone will find a "hack" and post it here for all of us. I have found some suggested "hacks" for Windows environment (you can simply google it, I am sure you will find them too). But so far I haven't seen anything for Mac's Safari browser.
    Cheers,
    Ally
    Thursday, September 13th, 2012

  • How to permanent disable the touchpad for dv6-1245dx

    i can't find anything to permanently disable the touchpad.
    I disabled  the item in the control panel, but still it turns during bootup or after standby.
    how to permanently disable that touchpad?
    ps. also uninstalled the driver, but it's still working.

    Hi,
    Go to Control Panel -> Devices Manager -> Mouse and other pointing devices
    Click with right button of Your mouse on Touchapd abd choose switch off.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • How to permanently disable local TimeMachine backups?

    Hi,
    I have disabled the local TimeMachine using:
      sudo tmutil disablelocal
    That all works fine but after a reboot, the local backups are back again. For some reason this setting doesn't survives a reboot.
    Can nayone give me some advise on how to permanently disable local TimeMachine backups?
    Dennis

    Here's how I permanently disable TM local snapshots:
    1. create  ~/Library/LaunchAgents/com.wfiveash.disable_tmlsnaps.plist containing:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>Label</key>
        <string>com.wfiveash.disable_tmlsnaps</string>
        <key>ProgramArguments</key>
        <array>
            <string>/Users/willf/bin/disable_tmlsnaps.ksh</string>
        </array>
        <key>WatchPaths</key>
        <array>
            <string>/Library/Preferences/com.apple.TimeMachine.plist</string>
        </array>
    </dict>
    </plist>
    2. create a shell script ~/bin/disable_tmlsnaps.ksh:
    #!/bin/ksh -p
    # This script is supposed to be run via launchd (see
    # ~/Library/LaunchAgents/com.wfiveash.disable_tmlsnaps.plist) when launchd
    # detects a change to the TimeMachine.plist file.  This script will determine
    # if TM local snapshots has been enabled via the MobileBackups property and if
    # it has it will run the setuid disable_tmlsnaps binary.
    # prevent launchd throttling respawn warning, must wait 10s before this script exits
    sleep 10
    integer lsnaps=-1
    lsnaps=$(defaults read /Library/Preferences/com.apple.TimeMachine.plist MobileBackups)
    if [[ $lsnaps -eq 1 ]]
    then
        exec "${HOME}/bin/i386/disable_tmlsnaps"
    elif [[ $lsnaps -eq -1 ]]
    then
        # there was an error running defaults
        exit 1
    else
        exit 0
    fi
    3. Lastly compiled this C program and named it ~/bin/i386/disable_tmlsnaps.  I set the permissions so it was owned by root and setuid:
    * To build: gcc -o disable_tmlsnaps disable_tmlsnaps.c
    * sudo chown root:wheel disable_tmlsnaps
    * sudo chmod u+s disable_tmlsnaps
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/types.h>
    #include <unistd.h>
    int
    main (int argc, char *argv[])
        int rc;
        rc = setuid(0);
        if (rc == 0)
            rc = system("/usr/bin/tmutil disablelocal");
        return rc;
    =================================================================
    Now when /Library/Preferences/com.apple.TimeMachine.plist is modified (which happens when TM is enabled or disabled) launched will run my disable_tmlsnaps.ksh script which will check to see if it needs to disable TM local snapshots.

  • How to permanently disable the Shared Photo Stream on a windows pc

    I've got the Icloud control panel installed on a windows7 pc. On this specific pc I only want My Photostream running. I've tried to disable the Shared Photo Stream - but when I log off my windows user account an then log in again, the checkmark next to the Shared photo Stream is back, and iCloud starts again downloading the shared stream. How can I stop this behavior? I want to permanently disable the Shared Photo Stream.

    Try this method of duplication:
    <font "size=+1">Duplicate a CD or DVD
    1. Insert the DVD/CD;
    2. Open Disk Utility, and select the DVD/CD from the left side list (select the DVD/CD icon on top);
    3. from the DU File menu select New | Disk Image from Disk 1;
    4. Choose to format the disk image as DVD/CD Master, name the disk image and click Save;
    5. When the .cdr file is finished select it with mouse and press COMMAND-I to open the Get Info and check the box to lock the file;
    6. Choose the .cdr file from the left side list, click Burn, and insert a new, blank DVD or CD.

  • HOW to permanently disable Tap to Click? Keeps re-enabling !@$#@&# HP 2000 Notebook PC Windows 7

    I sincerely hope whoever implemented this featurehas [edited comment by moderator].  I was so tempted to just throw this machine out, or donating it to a homeless person though the latter could possibly be considered an act of cruelty.
    Anyway, no matter how many times I disable tap to click, before long my laptop is clicking everything against my will, again. Is there a way to permanently disable this without permanently destroying the whole of the physical machine (which is growing increasingly tempting)?
    My drivers are all up to date. So far I could only find a vague suggestion to edit the registry without details as to how and where.

    Hi @hypgnosis ,
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publically post ( serial numbers and case details).
    If you are unfamiliar with how the Forum's private message capability works, you can learn about that here.
    Regards,
    George
    I work for HP

  • How can I disable window snapping/docking?

    Ever since CS4 came out I feel like I've been less productive in Photoshop due to annoying window dock/snapping.  Windows are constantly sticking and resizing themselves in ways that blocks the work I am trying to do.  Also the main image itself automatically resizes to feet the work space and I find this also an annoyance.  This is my main question:  How can I disable "sticky" windows?
    In fact if there a way to get the old classic skin back that would be great, also...because all the programs in CS4 are missing a handle bar at the top of the window, making it difficult to find a place to click to drag the window around...which also wastes time.  Sometimes the classic skin is visible underneath buttons in graphic glitches..
    Finally, is there a way to disable hardware acceleration completely?  My processor is fast enough that it can complete tasks faster than the latency of accessing the GPU, so hardware acceleration actually slows things down.  Also the hardware code has bugs in it that prevents me from opening massive images (eg, 21600 x 21600 image crashes).

    Edit, preferences. Everything is there to play with

  • How to permanently disable comment popup hint in Adobe Reader X?

    I wish to permanently disable the popup that says  "Click on Comment and Share to create, mark-up and send PDF files.":
    It is getting annoying having to always click it to remove it when viewing a new PDF file in Fullscreen mode.
    How can I acheive this?
    Is there a setting in the preferences or a key in the registry that I can modify?

    You're right. I've tested on a couple of computers now and the problem seems to be isolated to one computer with a particular software setup. On the others it works as you describe.
    You would'nt by any chance know where this "don't show the bubble"-setting is stored after clicking the cross for the first time? Is it in the registry?
    Edit:
    Received a helpful tips: HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral\bShowTaskButtonInfoBubble

  • How do I disable Windows 8.1 Auto-lock

    New Computer, Windows 8.1, 64-bit.  How do I disable the Windows 8.1 Auto-Lock?  I searched Forums, and the most popular answer was to go to User Accounts and Reset Security Policies.  I went to Control Panel/User Accounts and there is NO
    option to 'Reset Security Policies'.  Now what?  :(

    Hi,
    Did you have any custom GPOs for specific users/groups?
    If you didn't modify your GPO,you cannot see this option(Reset Security Policies).
    For this issue,I suggest you check your power plans setting first.
    Also,please check Screen Saver's time and the following setting.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • How to permanently disable click-to-run "feature" on all plug-ins

    How can I permanently disable the click-to-run "feature" for all plug-ins *including* ones that are unsafe, exploitable, etc.?
    I know that this is "unsafe", "inadvisable", a "security risk", etc. however this question has been asked many times and I have not yet found an answer. My reason for wanting to do so is not important and there is no point in questioning it; this is a simple question with what should be a simple answer, and does not require the bickering and arguing that always ensues when someone asks this extraordinarily basic question.
    I want to permanently disable any and all forms of click-to-run for any and all plugins, so that all plugins run without having to be clicked first and show absolutely no warnings whatsoever of any kind. If I don't want to run a plug-in I will disable it.
    How can I do this very simply thing?

    Some outdated plugins (e.g. Flash plugins) are blocked via click-to-play and can be enabled when required.<br />
    It is best to update such a plugin to the latest version to be protected against security vulnerabilities.
    You would have to disable blocklisting to circumvent this and that is not recommended.

  • How to permanently disable programs running in Activity Monitor?

    Considering the Activity Monitor being able to manually disable programs running in the background. How do I permanently disable programs running in the background ?
    Not all these programs appear in the System Preferences >> Users & Groups >> Login Items
    System details:

    jojojona wrote:
    Considering the Activity Monitor being able to manually disable programs running in the background. How do I permanently disable programs running in the background ?...
    You might want to make a full clone backup of your boot drive before you start disabling processes unless you know what software those processes support since you may break software you need. For example, Creative Cloud is Adobe software; do you use any Adobe software which might depend on Creative Cloud running?

  • How to PERMANENTLY disable auto-run write trials of qttask.exe and outbound

    I installed QuickTime player on my WinXP.
    As I found out my firewall pops up frequently since then informing me that qttaks wants to write itself in the auto-start folder.
    Furthermore I observed several internet connection attempts.
    So QT want to call come to Moms server at apple?, eh?
    This is nasty and really annoying similar to MS.
    How can I disable both PERMANENTLY?
    I did not found options for that.
    Peter

    It is probably trying to load the "Content Guide" and you can turn this off in the Player Preferences.

  • How to permanently disable hyperlink autopopup views?

    How do I permanently disable the annoying feat of viewing a preview of a hyperlink, everytime the mouse hovers over a hyperlink?
    It's really gad damn annoying!

    Welcome to Apple Communities
    Settings > Safari

  • How to permanently disable the voiceover function?

    Please can someone help? I have a 6 month old iphone 4 that seems to go into Voiceover mode by itself ( or at least I cannot figure out what I am doing to make it do that). Please can anyone advise how to disable this mode permanently. It is really tedious and annoying to have to struggle to turn it off each time it does it. Thanks!

    Do you have a triple-click of the home button set to turn VoiceOver 'on' and 'off' - check what Settings > General > Accessibility > Triple-Click Home is set to, and if necessary change it to something else

  • How to permanently disable quick links

    Recently Firefox has started doing something extremely annoying - activating something called quick links whenever I use an apostrophe ('). The only way I have found to disable it is to go into about:config and add a boolean to disable it, but when I restart Firefox it goes back to the default settings. This is incredibly annoying because damnit, I want to use proper grammar and punctuation in my posts and this thing won't let me! I never asked to turn it on since Ctrl-F does the same thing, it is a redundant feature that has a stupid trigger. I'm seriously switching to Chrome over this, but I'm hoping I can solve the problem first...

    Above "solutions" attempted.
    Did not work.
    Solutions that involve me resizing windows, or opening and closing dialogue boxes, or sacrificing a chicken to the mozilla overlords are not acceptable. Fix the problem by removing the keymap, or allowing users to remove the keymapping, would be grand.
    Any other ideas here? I would try the "upgrade FF'" solution, but FF4.1 does not support firebug yet, and without firebug there really is not a reason to use Firefox.
    This has to be the most boneheaded UI/UX decision ever.
    Guess what, the apostrophe is used CONSTANTLY when you are writing things like, oh, email... google docs... facebook posts... twitter posts...
    Seriously. Double Picard Facepalm.
    I've tried a number of the suggested ways to disable this "feature" and none of them work. Basically, in FF4, I am totally boned.

Maybe you are looking for