zoukankan      html  css  js  c++  java
  • Windows Server 2012 R2 卸载IE浏览器

    If you run any Windows Servers, you may run into a scenario where you want to remove access to Internet Explorer. Usually, any administrators that log into servers won’t have a need for it anyway, plus it can be a security concern. Sometimes, you might have a server that refuses to update to the latest version (as of this writing is IE11).

    Here’s how to remove Internet Explorer (IE) from Windows Server.

    Open a Command Prompt with Administrative Privledges. To get a list of all of your enabled features, run this command: dism /online /get-features One of the features is Internet-Explorer-Optional-amd64.

    To remove Internet Explorer (IE), run this command: dism /online /disable-feature /featurename:Internet-Explorer-Optional-amd64

    You’ll see:

    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    
    Image Version: 6.1.7601.18489
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    

    After the restart, Internet Explorer (IE) won’t be available. If you need to add it back, replace /disable-feature with /enable-feature in the command above.

  • 相关阅读:
    log4net 配置
    Sublime Text 2 安装Package Control和插件的两种方法
    Silverlight中ListBox的数据绑定
    在Silverlight 5 项目中创建单元测试项目
    const V.S readonly
    鼠标和键盘操作的全局钩子库
    数码管图片
    正则表达式
    ToString的格式化字符串
    C# Builder
  • 原文地址:https://www.cnblogs.com/rusking/p/10891097.html
Copyright © 2011-2022 走看看