Code Monkey home page Code Monkey logo

xwindowsupdate's Introduction

xWindowsUpdate Module

master: Build status codecov

dev: Build status codecov

The xWindowsUpdate module contains the xHotfix and xMicrosoftUpdate DSC resources. xWindowsUpdate installs a Windows Update (or hotfix) from a given path. For more information on Windows Update and Hotfix, please refer to this TechNet article. xMicrosoftUpdate enables or disables Microsoft Update.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Contributing

Please check out common DSC Resources contributing guidelines.

Resources

xHotfix

  • Path: The path from where the hotfix should be installed
  • Log: The name of the log where installation/uninstallation details are stored. If no log is used, a temporary log name is created by the resource.
  • Id: The hotfix ID of the Windows update that uniquely identifies the hotfix.
  • Ensure: Ensures that the hotfix is Present or Absent.

xWindowsUpdateAgent

  • UpdateNow: Indicates if the resource should trigger an update during consistency (including initial.)
  • Category: Indicates the categories (one or more) of updates the resource should update for. 'Security', 'Important', 'Optional'. Default: 'Security' (please note that security is not mutually exclusive with Important and Optional, so selecting Important may install some security updates, etc.)
  • Notifications: Sets the windows update agent notification setting. Supported options are 'disabled' and 'ScheduledInstallation'. Documentation from Windows Update
  • Source: Sets the service windows update agent will use for searching for updates. Supported options are 'MicrosoftUpdate' and 'WindowsUpdate'. Note 'WSUS' is currently reserver for future use.
  • IsSingleInstance: Should always be yes. Ensures you can only have one instance of this resource in a configuration.

xMicrosoftUpdate

Note: xMicrosoftUpdate is deprecated. Please use xWindowsUpdateAgent.

  • Ensure: Determines whether the Microsoft Update service should be enabled (ensure) or disabled (absent) in Windows Update.

Versions

Unreleased

2.7.0.0

  • xWindowsUpdateAgent: Fix Get-TargetResource returning incorrect key

2.6.0.0

  • Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
  • Fixed PSScriptAnalyzer issues.
  • Fixed common test breaks (markdown style, and example style).
  • Added CodeCov.io reporting
  • Deprecated xMicrosoftUpdate as it's functionality is replaced by xWindowsUpdateAgent

2.5.0.0

  • Added xWindowsUpdateAgent

2.4.0.0

  • Fixed PSScriptAnalyzer error in examples

2.3.0.0

  • MSFT_xWindowsUpdate: Fixed an issue in the Get-TargetResource function, resulting in the Get-DscConfiguration cmdlet now working appropriately when the resource is applied.
  • MSFT_xWindowsUpdate: Fixed an issue in the Set-TargetResource function that was causing the function to fail when the installation of a hotfix did not provide an exit code.

2.2.0.0

  • Minor fixes

2.1.0.0

  • Added xMicrosoftUpdate DSC resource which can be used to enable/disable Microsoft Update in the Windows Update Settings.

1.0.0.0

  • Initial release with the xHotfix resource

Examples

xHotfix Examples 1

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"
        }
    }
}

Installs a hotfix from 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"
        }
    }
}

Enable Microsoft Update

This configuration will enable the Microsoft Update Settings (checkbox) in the Windows Update settings

Configuration MSUpdate
{
    Import-DscResource -Module xWindowsUpdate
    xMicrosoftUpdate "EnableMSUpdate"
    {
        Ensure = "Present"
    }
}

xWindowsUpdateAgent Sample 1

Set Windows Update Agent to use Microsoft Update. Disables notification of future updates. Install all Security and Important updates from Microsoft Update during the configuration using UpdateNow = $true.

Configuration MuSecurityImportant
{
    Import-DscResource -ModuleName xWindowsUpdate
    xWindowsUpdateAgent MuSecurityImportant
    {
        IsSingleInstance = 'Yes'
        UpdateNow        = $true
        Category         = @('Security','Important')
        Source           = 'MicrosoftUpdate'
        Notifications    = 'Disabled'
    }
}

xWindowsUpdateAgent Sample 2

Sets the Windows Update Agent to use the Windows Update service (vs Microsoft Update or WSUS) and sets the notifications to scheduled install (no notifications, just automatically install the updates.) Does not install updates during the configuration UpdateNow = $false.

Configuration WuScheduleInstall
{
    Import-DscResource -ModuleName xWindowsUpdate
    xWindowsUpdateAgent MuSecurityImportant
    {
        IsSingleInstance = 'Yes'
        UpdateNow        = $false
        Source           = 'WindowsUpdate'
        Notifications    = 'ScheduledInstallation'
    }
}

xwindowsupdate's People

Contributors

travisez13 avatar karolkaczmarek avatar mprahl avatar kwirkykat avatar j0f3 avatar joeyaiello avatar chrislgardner avatar nanalakshmanan avatar bleecky avatar powershellteam avatar gtatelive avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.