Skip to content

Releases: dsccommunity/ComputerManagementDsc

v3.2.0

20 Jan 05:28
2715745
Compare
Choose a tag to compare
  • xScheduledTask:
    • Enable Execution Time Limit of task to be set to indefinite
      by setting ExecutionTimeLimit to '00:00:00' - See Issue #115.
  • xPowerPlan:
    • Updated to meet HQRM guidelines.
    • Converted calls to throw to use New-InvalidOperationException
      in CommonResourceHelper.
  • Move Common Resource Helper functions into modules folder.
  • Changed resources to use Common Resource Helper functions.
  • Moved strings for Common Resource Helper functions into separate
    strings file.
  • Added unit tests for Common Helper functions.

v3.1.0

20 Jan 05:29
662d5cf
Compare
Choose a tag to compare
  • xOfflineDomainJoin:
    • Updated to meet HQRM guidelines.
  • xScheduledTask:
    • Applied autoformatting to examples to improve readability.
    • Added LogonType and RunLevel parameters for controlling
      task execution.
    • Correct Assert-VerifiableMocks to Assert-VerifiableMock

v3.0.0

20 Jan 05:29
Compare
Choose a tag to compare
  • xComputer: Added parameter to set the local computer description along with documentation
    and unit tests for this change.
  • BREAKING CHANGE: xScheduledTask:
    • Converted all Interval/Duration type parameters over to be string format
      to prevent the Timezone the MOF file was created in from being stored.
      This is to fix problems where MOF files are created in one timezone but
      deployed nodes to a different timezone - See Issue #85
    • Added ConvertTo-TimeSpanFromScheduledTaskString function and refactored
      to reduce code duplication.
    • Added support for setting repetition duration to Indefinitely.
  • xComputer:
    • Moved strings to localization file.
    • Updated to meet HQRM guidelines.
  • xVirtualMemory:
    • Refactored shared common code into new utility functions to
      reduce code duplication and improve testability.
    • Moved strings into localizable strings file.
    • Converted calls to throw to use New-InvalidOperationException
      in CommonResourceHelper.
    • Improved unit test coverage.
    • Updated to meet HQRM guidelines.

v2.1.0

20 Jan 05:29
Compare
Choose a tag to compare
  • xComputer: Changed comparison that validates if we are in the correct AD
    Domain to work correctly if FQDN wasn't used.
  • Updated AppVeyor.yml to use AppVeyor.psm1 module in DSCResource.Tests.
  • Removed Markdown.md errors.
  • Added CodeCov.io support.
  • xScheduledTask
    • Fixed incorrect TaskPath handling - Issue #45
  • Change examples to meet HQRM standards and optin to Example validation
    tests.
  • Replaced examples in README.MD to links to Example files.
  • Added the VS Code PowerShell extension formatting settings that cause PowerShell
    files to be formatted as per the DSC Resource kit style guidelines - Issue #91.
  • Opted into Common Tests 'Validate Module Files' and 'Validate Script Files'.
  • Converted files with UTF8 with BOM over to UTF8 - fixes Issue #90.
  • Updated Year to 2017 in License and Manifest - fixes Issue #87.
  • Added .github support files - fixes Issue #88:
    • CONTRIBUTING.md
    • ISSUE_TEMPLATE.md
    • PULL_REQUEST_TEMPLATE.md
  • Resolved all PSScriptAnalyzer warnings and style guide warnings.
  • xOfflineDomainJoin:
    • Changed to use CommonResourceHelper to load localization strings.
    • Renamed en-US to be correct case so that localization strings can be loaded.
    • Suppress PSScriptAnalyzer rule PSAvoidGlobalVars for
      $global:DSCMachineStatus = 1.
  • xComputer:
    • Suppress PSScriptAnalyzer rule PSAvoidGlobalVars for
      $global:DSCMachineStatus = 1.
  • xVirtualMemory:
    • Suppress PSScriptAnalyzer rule PSAvoidGlobalVars for
      $global:DSCMachineStatus = 1.

v2.0.0

20 Jan 05:30
Compare
Choose a tag to compare
  • Updated resources
    • BREAKING CHANGE: xScheduledTask: Added nearly all available parameters for tasks
  • xVirtualMemory:
    • Fixed failing tests.

v1.10.0

20 Jan 05:30
Compare
Choose a tag to compare
  • Added resources:
    • xVirtualMemory

v1.9.0

20 Jan 05:30
Compare
Choose a tag to compare
  • Added resources
    • xPowerPlan

v1.8.0

20 Jan 05:30
Compare
Choose a tag to compare
  • Converted AppVeyor.yml to pull Pester from PSGallery instead of
    Chocolatey.
  • Changed AppVeyor.yml to use default image
  • xScheduledTask: Fixed bug with different OS versions returning repeat interval
    differently

v1.7.0

20 Jan 05:31
Compare
Choose a tag to compare
  • Added support for enabling or disabling scheduled tasks
  • The Name parameter resolves to $env:COMPUTERNAME when the value is localhost

v1.6.0

20 Jan 05:31
Compare
Choose a tag to compare
  • Added the following resources:
    • MSFT_xOfflineDomainJoin resource to join computers to an AD Domain using an
      Offline Domain Join request file.
    • MSFT_xScheduledTask resource to control scheduled tasks on the local server
  • MSFT_xOfflineDomainJoin: Corrected localizedData.DomainAlreadyJoinedhMessage name.
  • xComputer: Changed credential generation code in tests to avoid triggering
    PSSA rule PSAvoidUsingConvertToSecureStringWithPlainText.
    Renamed unit test file to match the name of Resource file.