From c730fc7eeb2c9d1d59281c7de3f5ccb18468231b Mon Sep 17 00:00:00 2001 From: Sergei Vorobev Date: Thu, 23 Apr 2015 17:21:41 -0700 Subject: [PATCH] Remove html documentation --- TechnetDocumentation-xWindowsUpdate.html | 821 ----------------------- 1 file changed, 821 deletions(-) delete mode 100644 TechnetDocumentation-xWindowsUpdate.html diff --git a/TechnetDocumentation-xWindowsUpdate.html b/TechnetDocumentation-xWindowsUpdate.html deleted file mode 100644 index 05cbc34..0000000 --- a/TechnetDocumentation-xWindowsUpdate.html +++ /dev/null @@ -1,821 +0,0 @@ - - - - - - - -
- -

Introduction

- -

The xWindowsUpdate module is a part of the Windows -PowerShell Desired State Configuration (DSC) Resource Kit, which is a -collection of DSC Resources produced by the PowerShell Team. This module -contains the xHotfix resource. xHotfix handles -installation of  a windows update (or a hotfix) from a given path (File path or a URI).

- -

All of the resources in the DSC Resource Kit are -provided AS IS, and are not supported through any Microsoft standard support -program or service. The "x" in xWindowsUpdate stands for -experimental, which means that these resources will be fix -forward and monitored by the module owner(s).

- -

Please leave comments, feature requests, and bug -reports in the Q & A tab for this module.

- -

If you would like to modify xWindowsUpdate module, -feel free. When modifying, please update the module name, resource friendly -name, and MOF class name (instructions below). As specified in the license, you -may copy or modify this resource as long as they are used on the Windows -Platform.

- -

For more -information about Windows PowerShell Desired State Configuration, check out the -blog posts on the PowerShell Blog -(this -is a good starting point). There are also great community resources, such as PowerShell.org, or PowerShell Magazine. For -more information on the DSC Resource Kit, check out this blog post.

- -

Installation

- -

To install xWindowsUpdate module

- - - -

To confirm -installation:

- - - -

Requirements

- -

This module -requires the latest version of PowerShell (v4.0, which ships in Windows 8.1 or -Windows Server 2012 R2). To easily use PowerShell 4.0 on older operating -systems, install -WMF 4.0. Please read the installation instructions that are present on both -the download page and the release notes for WMF 4.0.

- -

Description

- -

This xWindowsUpdate -module contains the xHotfix resource. xWindowsUpdate -handles installation of  a windows update hotfix from a given URI or filepath. For -information on Windows Update and Hotfix, please refer to http://technet.microsoft.com/en-us/library/cc750077.aspx

- -

 

- -

Details

- -

xHotfix resource has the following properties:

- - - - - -

 

- -

Renaming Requirements

- -

When making -changes to these resources, we suggest the following practice:

- -

1.     -Update the following -names by prefixing your company/community name and replacing the "x" -with "c" (short for "Community") or another prefix -of your choice:

- -

o    Module name (ex: xHotfix becomes cHotfix) -

- -

o    Resource folder (ex: xHotfix becomes Contoso_cHotfix) -

- -

o    Resource Name (ex: xHotfix becomes Contoso_cHotfix) -

- -

2.     -Update module and -metadata information in the module manifest

- -

3.     -Update any -configuration that use these resources

- -

We reserve -resource and module names without prefixes ("x" or "c") for -future use (e.g. "xHotfix"). If the next version of Windows Server -ships with a "Hotfix" resource, we don't want to break any configurations -that use any community modifications. Please keep a prefix such as -"c" on all community modifications.

- -

Versions

- -

2.0.0.0

- - - -

Example: Install a hotfix present in the path c:/temp/Windows8.1-KB2908279-v2-x86.msu and the ID 2908279

- -

This -configuration will install the hotfix from the msu file given. If the -hotfix with the required hotfix ID is already present on the system, -the installation is skipped.

- -

 

- -

configuration UpdateWindowsWithPath

- -

{

- -

        

- -

    Node ‘NodeName’

- -

    {

- -

        xHotfix HotfixInstall

- -

        {

- -

            Ensure = -"Present"

- -

            Path = -"c:/temp/Windows8.1-KB2908279-v2-x86.msu"

- -

            Id = "KB2908279"

- -

        }

- -

    }

- -

}

- -

 

- - -

Example: Install a hotfix present in a given URI

- -

This configuration will install the hotfix from a URI that is connected to a particular hotfix ID.

- -

 

- -

configuration UpdateWindowsWithURI

- -

{

- -

        

- -

    Node ‘NodeName’

- -

    {

- -

        xHotfix HotfixInstall

- -

        {

- -

            Ensure = -"Present"

- -

            Path = -"http://hotfixv4.microsoft.com/Microsoft%20Office%20SharePoint%20Server%202007/sp2/officekb956056fullfilex64glb/12.0000.6327.5000/free/358323_intl_x64_zip.exe"

- -

            Id = "KB2937982"

- -

        }

- -

    }

- -

}

-s - -

 

- -

 

- - -

 

- -
- - \ No newline at end of file