zoukankan      html  css  js  c++  java
  • Inside WUAIntroduction

    Words before this article

    Abstract: about WUA

    • What is WUA?
    • How to use WUA?
    • WUA API reference in MSDN

    End


    Words before this article

    I want to write series of articles about my current job.

    Short of time and energy , a little lazy, the idea is surround me last long.Smile

    I finally make my decision today to finish this.

    Please hold on, guys.

    Here I coming soon.


    About WUA

  • What is WUA?

  • Definition from MSDN: Windows Update Agent (WUA) automatically updates itself when it is connected to a Windows Server Update Services (WSUS) server or to Windows Update. WUA can also be manually updated by using a signed installation package that is available from Microsoft.

  • In one word, use WUA you can control the procedure of updates updating your machine.

  • How to use WUA?

  • Because WUA is series of COM interface, so you can use it in many ways.

    1. In C#: you can call these functions directly via tlbImp. Or use class Type, such as Type.GetTypeFromProgID

    2. In PowerShell: New-Object –ComObject ProgId

    3. In C++, you can include <wuapi.dll>, use COM API, CoCreateIntance etc.

  • WUA API reference in MSDN

  • http://msdn.microsoft.com/en-us/library/aa387292(VS.85).aspx


  • End

    I will read the design principle docs and source code to analyze WUA. 

查看全文
  • 相关阅读:
    python利用scapy模块写一个TCP路由追踪和扫描存活IP的脚本
    mitm6:通过IPv6攻破IPv4网络
    php写一个判断是否有cookie的脚本
    python写一个DDos脚本(DOS)
    分布式系统设计系列 -- 基本原理及高可用策略(转)
    在Ubuntu 16.04 上编译安装OpenCV3.2.0(Cmake + python3 + OpenCV3)(转)
    好玩的Raft动画演示,原理秒懂
    全球分布式数据库:Google Spanner(论文翻译)
    分布式系统设计系列 -- 基本原理及高可用策略 (转)
    MySQL更新优化(转)
  • 原文地址:https://www.cnblogs.com/diggingdeeply/p/Inside_WUA_Introduction.html
  • Copyright © 2011-2022 走看看