博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
加速WI与AMC加载速度
阅读量:6566 次
发布时间:2019-06-24

本文共 1053 字,大约阅读时间需要 3 分钟。

WI首次登录加速:

编辑WI服务器上:C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet.config
 

AMC加速方法:
加速后AMC可以10秒内完成打开,未加速前,需要30秒或以上才能完成打开。
For 32-bit Windows Installations:

  • Create a file in c:\windows\system32\mmc.exe.config.
  • Place the following text inside the file and save it:

<?xml version="1.0" encoding="utf-8"?>

<configuration>
<runtime> 
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>

  • Launch the Access Management Console again. This should be much faster because the system does not attempt to verify the Authenticode signature.

For 64-bit Windows Installations:

  • Create a file in C:\Windows\SysWOW64\mmc.exe.config.
  • Place the following text inside the file and save it:

<?xml version="1.0" encoding="utf-8"?>

<configuration>
<runtime> 
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>

  • Launch the Access Management Console again. This should be much faster because the system does not attempt to verify the Authenticode signature
     

本文转自 

zhxhua 51CTO博客,原文链接:http://blog.51cto.com/virtualtop/479485 ,如需转载请自行联系原作者

你可能感兴趣的文章
微服务测试之静态代码扫描
查看>>
PAT A1063
查看>>
IOS开发错误library not found for -lXXX
查看>>
Win7安装Docker
查看>>
phpstorm 关闭多余变量提示
查看>>
DOM概述 选取文档元素
查看>>
构建你的第一个Vue.js组件
查看>>
如何完整迁移git仓库到另一个远程地址
查看>>
autocad三维汇报,bim汇报,视图汇报方法
查看>>
JS基础知识学习(一)
查看>>
多条语音消息合成一整条连续播放与进度条功能技术点!
查看>>
通过btrace排查线上频繁Full GC的case
查看>>
SpringBoot+Mybatis配置Druid多数据源
查看>>
java的观察者模式
查看>>
Express.js 中的 Sessions 如何工作?(译)
查看>>
ionic之点击放大图片
查看>>
前端计划——面试题总结-CSS篇
查看>>
慕课网_《微信授权登录》学习总结
查看>>
[elixir! #0043] 精确到 1bit 的字符串处理
查看>>
简单快速的开发WEB应用, PHP 框架 Lemon 介绍
查看>>