zoukankan      html  css  js  c++  java
  • IIS回收后首次访问慢问题

    禁用时间间隔回收 设置为0

    然后设置指定时间回收 0:00:00

    然后设置脚本

    @echo off
     
    @echo  正在关掉所有的IE进程(需要设置默认浏览器是IE)
    taskkill   /im iexplore.exe /f /t
     
    @echo 正在访问 http://localhost
    start "C:Program FilesInternet Exploreriexplore.exe"  http://localhost
     
    @echo 正在通过ping来延迟80秒钟,以方便IE打开页面
    ping 127.0.0.1 -n 80
     
    @echo  正在关掉所有的IE进程(需要设置默认浏览器是IE)
    taskkill /im iexplore.exe /f /t
     
    @echo 正在访问 http://localhost
    start "C:Program FilesInternet Exploreriexplore.exe"  http://localhost
     
    @echo 正在通过ping来延迟80秒钟,以方便IE打开页面
    ping 127.0.0.1 -n 80
     
    @echo  正在关掉所有的IE进程(需要设置默认浏览器是IE)
    taskkill /im iexplore.exe /f /t 
    

      设置计划任务 定期运行

  • 相关阅读:
    输入流输出流打印到文件
    前缀和
    树形dp
    快速幂 ,快速幂优化,矩形快速幂(java)
    尾递归
    java中bigInteger的应用
    求树的最大直径
    买不到的数目
    ccpc 长春站 G
    大学ACM第二周心得
  • 原文地址:https://www.cnblogs.com/ahuo/p/5894691.html
Copyright © 2011-2022 走看看