我们都知道Windows的服务器都需要打补丁的,要不然漏洞那个叫多啊。Windows的系列服务器打补丁无非就是两种方法:

1. 通过Internet打补丁:

  1. Go to control Panel->Windows Update->Hit 'Check for Updates'
  2. Go to control Panel->Windows Update->Hit 'Check online for updates from Windows update'
  3. After completing the above tasks you receive the availabe 'Install updates for computer'
  4. Go to control Panel->Windows Update->Hit 'numbers important update are available'
  5. Unselect the package you don't want to update and Hit 'OK'
  6. Then Hit 'Install updates' , then it starts downloading the patches and install it automatically.
  7. Once installation is completed, instead of install updates you will get the option to restart.

2. 通过WSUS打补丁: (可以和SCCM配合使用)

  1. 建立一个域环境,当然你有得安装和配置AD
  2. 安装一个WSUS服务器,具体步骤不写了,网上很多
  3. 把客户端加入到域环境中
  4. Go to control Panel->Windows Update->Change Settings,   (check if you setings block by domain admin, gpupdate /force)
  5. Go to control Panel->Windows Update->Hit 'Check for update managed by your system administrator' (from WSUS)
  6. Then Hit 'Install updates' , then it starts downloading the patches and install it automatically. (WSUS服务器中已经配置了哪些补丁会被安装)
  7. Once installation is completed, instead of install updates you will get the option to restart.

3. 客户端打补丁时用到的目录和日志

  C:\Windows\WindowsUpdate.txt (日志记录Windows客户端是否打了补丁从哪里打的补丁)

  1. 通过Internet打补丁的日志形态
  2. --    :::         25cc    PT      + ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}, Server URL = https://www.update.microsoft.com/v6/ClientWebService/client.asmx
    -- ::: 25cc Misc Validating signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    -- ::: 25cc Misc Microsoft signed: Yes
    -- ::: 25cc Agent * Found updates and categories in search; evaluated appl. rules of out of deployed entities
    -- ::: 25cc Agent *********
    -- ::: 216c AU # updates detected
  3. 通过WSUS打补丁的日志形态
  4. --    :::         25cc    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    -- ::: 25cc PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://10.15.1.14/ClientWebService/client.asmx
    -- ::: 25cc Agent * Found updates and categories in search; evaluated appl. rules of out of deployed entities
    -- ::: 25cc Agent *********
    -- ::: 216c AU # updates detected

  C:\Windows\SoftwareDistribution\Download (本目录用于存放下载的补丁)

Windows2008 Patching(打补丁)的更多相关文章

  1. [LeetCode] Patching Array 补丁数组

    Given a sorted positive integer array nums and an integer n, add/patch elements to the array such th ...

  2. Linux操作系统发展史

    1984年,面对美国电话电报公司启动的UNIX商业化计划和程序开发的封闭模式,麻省理工学院的RichardM.Stallman发起了一项国际性的源代码开放的GNU(GNU's Not Unix)计划, ...

  3. 初学Python——协程

    进程.线程和协程区分 我们通常所说的协程Coroutine其实是corporate routine的缩写,直接翻译为协同的例程,一般我们都简称为协程. 在linux系统中,线程就是轻量级的进程,而我们 ...

  4. python之协程gevent模块

    Gevent官网文档地址:http://www.gevent.org/contents.html 进程.线程.协程区分 我们通常所说的协程Coroutine其实是corporate routine的缩 ...

  5. Gevent模块,协程应用

    Gevent官网文档地址:http://www.gevent.org/contents.html 进程.线程.协程区分 我们通常所说的协程Coroutine其实是corporate routine的缩 ...

  6. 猴子补丁(Monkey Patching)

    猴子补丁是我在面试的时候接触的一到题,学python的时候,我根本就没有听说这个概念!那接下来我们来分析一下: 1.什么是猴子补丁? 2.猴子补丁的功能? 3.猴子补丁的应用场景? 一.什么是猴子补丁 ...

  7. Python面试题之“猴子补丁”(monkey patching)指的是什么?这种做法好吗?

    “猴子补丁”就是指,在函数或对象已经定义之后,再去改变它们的行为. 举个例子: import datetime datetime.datetime.now = lambda: datetime.dat ...

  8. [LeetCode] 330. Patching Array 数组补丁

    Given a sorted positive integer array nums and an integer n, add/patch elements to the array such th ...

  9. Oracle 11.2.0.4 RAC安装最新PSU补丁

    环境:两节点RAC(RHEL 6.4 + GI 11.2.0.4 + Oracle 11.2.0.4) 需求:安装最新PSU补丁11.2.0.4.7 1.下载补丁和最新OPatch 2.检查数据库当前 ...

随机推荐

  1. 项目乱码 GBK转UTF-8工具

    项目乱码 GBK转UTF-8工具 链接:http://pan.baidu.com/s/1pLw1mMB 密码:rj6c

  2. Sed简单入门实例

    1. Sed简介 sed 是一种在线编辑器,它一次处理一行内容.处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后 ...

  3. js&jquery验证邮箱和手机号是否正确范例

    实现源码: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ...

  4. hdu 2680 最短路径(dijkstra算法+多源最短路径单源化求最小值)这题有点意思

    Choose the best route Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Ot ...

  5. leetcode 40 Combination Sum II --- java

    Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in ...

  6. JavaScript学习记录总结(六)——js函数闭包特性

    <script type="text/javascript">    function arrdemo(){        var arr=["hello&q ...

  7. Unity3d纹理压缩格式表

  8. dll--二进制层面的复用

    积木式思想其实是很自然的一个过程,从c的库函数到C++的标准库,再到dll.com.com+都是这种思想推动下的结果,和现实生活中的人们的思维方式并无二致,只不过软件是在一个虚拟的世界中,并分化出许多 ...

  9. web-api-global-error-handling

    http://www.asp.net/web-api/overview/error-handling/web-api-global-error-handling http://www.cnblogs. ...

  10. 内存泄漏,当您使用的 GetDC 方法和 ReleaseDC 方法 CWnd 类版本

    重现行为的步骤 是从 CWnd 派生的类的一个方法中插入下面的代码在您的应用程序中: CDC *pDC; RECT rect; GetClientRect (&rect); for (int ...