-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from PowerShell/dev
Release of version 4.0.0.0 of xComputerManagement
- Loading branch information
Showing
61 changed files
with
2,268 additions
and
1,664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[string] $repoRoot = Split-Path -Path (Split-Path -Path $Script:MyInvocation.MyCommand.Path) | ||
if ( (-not (Test-Path -Path (Join-Path -Path $repoRoot -ChildPath 'DSCResource.Tests'))) -or ` | ||
(-not (Test-Path -Path (Join-Path -Path $repoRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1'))) ) | ||
{ | ||
& git @('clone','https://github.com/PowerShell/DscResource.Tests.git',(Join-Path -Path $repoRoot -ChildPath '\DSCResource.Tests\')) | ||
} | ||
|
||
Import-Module (Join-Path $PSScriptRoot "..\Tests\TestHarness.psm1" -Resolve) | ||
$dscTestsPath = Join-Path -Path $PSScriptRoot ` | ||
-ChildPath "..\Modules\xComputerManagement\DscResource.Tests\Meta.Tests.ps1" | ||
Invoke-TestHarness -DscTestsPath $dscTestsPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "PowerShell", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"program": "${file}", | ||
"args": [], | ||
"cwd": "${file}" | ||
}, | ||
{ | ||
"name": "Run all tests", | ||
"type": "PowerShell", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/.vscode/RunAllTests.ps1" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
# Versions | ||
|
||
## Unreleased | ||
|
||
## 4.0.0.0 | ||
|
||
- BREAKING CHANGE: xScheduledTask: | ||
- Breaking change because `Get-TargetResource` no longer outputs | ||
`ActionExecutable` and `ScheduleType` properties when the scheduled | ||
task does not exist. It will also include `TaskPath` in output when | ||
scheduled task does not exist. | ||
- xScheduledTask: | ||
- Add support to disable built-in scheduled tasks - See [Issue #74](https://github.com/PowerShell/xComputerManagement/issues/74). | ||
- Fix unit test mocked schedule task object structure. | ||
- Fix error message when trigger type is unknown - See [Issue #121](https://github.com/PowerShell/xComputerManagement/issues/121). | ||
- Moved strings into separate strings file. | ||
- Updated to meet HQRM guidelines. | ||
- xComputer: | ||
- Resolved bug in Get-ComputerDomain where LocalSystem doesn't have | ||
rights to the domain. | ||
- Updated tests to meet Pester V4 guidelines - See [Issue #106](https://github.com/PowerShell/xComputerManagement/issues/106). | ||
- Converted module to use auto documentation format. | ||
|
||
## 3.2.0.0 | ||
|
||
- xScheduledTask: | ||
- Enable Execution Time Limit of task to be set to indefinite | ||
by setting `ExecutionTimeLimit` to '00:00:00' - See [Issue #115](https://github.com/PowerShell/xComputerManagement/issues/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. | ||
|
||
## 3.1.0.0 | ||
|
||
- 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` | ||
|
||
## 3.0.0.0 | ||
|
||
- 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](https://github.com/PowerShell/xComputerManagement/issues/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. | ||
|
||
## 2.1.0.0 | ||
|
||
- 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](https://github.com/PowerShell/xComputerManagement/issues/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](https://github.com/PowerShell/xComputerManagement/issues/91). | ||
- Opted into Common Tests 'Validate Module Files' and 'Validate Script Files'. | ||
- Converted files with UTF8 with BOM over to UTF8 - fixes [Issue #90](https://github.com/PowerShell/xComputerManagement/issues/90). | ||
- Updated Year to 2017 in License and Manifest - fixes [Issue #87](https://github.com/PowerShell/xComputerManagement/issues/87). | ||
- Added .github support files - fixes [Issue #88](https://github.com/PowerShell/xComputerManagement/issues/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`. | ||
|
||
## 2.0.0.0 | ||
|
||
- Updated resources | ||
- BREAKING CHANGE: xScheduledTask: Added nearly all available parameters for tasks | ||
- xVirtualMemory: | ||
- Fixed failing tests. | ||
|
||
## 1.10.0.0 | ||
|
||
- Added resources: | ||
- xVirtualMemory | ||
|
||
## 1.9.0.0 | ||
|
||
- Added resources | ||
- xPowerPlan | ||
|
||
## 1.8.0.0 | ||
|
||
- 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 | ||
|
||
## 1.7.0.0 | ||
|
||
- Added support for enabling or disabling scheduled tasks | ||
- The Name parameter resolves to $env:COMPUTERNAME when the value is localhost | ||
|
||
## 1.6.0.0 | ||
|
||
- 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. | ||
|
||
## 1.5.0.0 | ||
|
||
- Update Unit tests to use the standard folder structure and test templates. | ||
- Added .gitignore to prevent commit of DSCResource.Tests. | ||
|
||
## 1.4.0.0 | ||
|
||
- Added validation to the Name parameter | ||
- Added the JoinOU parameter which allows you to specify the organizational unit | ||
that the computer account will be created in | ||
- Added the CurrentOU read-only property that shows the organizational unit that | ||
the computer account is currently in | ||
|
||
## 1.3.0 | ||
|
||
- xComputer | ||
- Fixed issue with Test-TargetResource when not specifying Domain or | ||
Workgroup name | ||
- Added tests | ||
|
||
## 1.2.2 | ||
|
||
- Added types to Get/Set/Test definitions to allow xResourceDesigner validation | ||
to succeed | ||
|
||
## 1.2 | ||
|
||
- Added functionality to enable moving computer from one domain to another | ||
- Modified Test-DscConfiguration logics when testing domain join | ||
|
||
## 1.0.0.0 | ||
|
||
- Initial release with the following resources: | ||
- xComputer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
.../MSFT_xComputer/MSFT_xComputer.schema.mof → .../MSFT_xComputer/MSFT_xComputer.schema.mof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[ClassVersion("1.0.1.0"), FriendlyName("xComputer")] | ||
class MSFT_xComputer : OMI_BaseResource | ||
{ | ||
[Key, Description("The desired computer name.")] String Name; | ||
[Write, Description("The name of the domain to join.")] String DomainName; | ||
[Write, Description("The distinguished name of the organizational unit that the computer account will be created in.")] String JoinOU; | ||
[Write, Description("Credential to be used to join a domain."), EmbeddedInstance("MSFT_Credential")] String Credential; | ||
[Write, Description("Credential to be used to leave a domain."), EmbeddedInstance("MSFT_Credential")] String UnjoinCredential; | ||
[Write, Description("The name of the workgroup.")] String WorkGroupName; | ||
[Write, Description("The value assigned here will be set as the local computer description.")] String Description; | ||
[Read, Description("A read-only property that specifies the organizational unit that the computer account is currently in.")] String CurrentOU; | ||
}; | ||
[ClassVersion("1.0.1.0"), FriendlyName("xComputer")] | ||
class MSFT_xComputer : OMI_BaseResource | ||
{ | ||
[Key, Description("The desired computer name.")] String Name; | ||
[Write, Description("The name of the domain to join.")] String DomainName; | ||
[Write, Description("The distinguished name of the organizational unit that the computer account will be created in.")] String JoinOU; | ||
[Write, Description("Credential to be used to join a domain."), EmbeddedInstance("MSFT_Credential")] String Credential; | ||
[Write, Description("Credential to be used to leave a domain."), EmbeddedInstance("MSFT_Credential")] String UnjoinCredential; | ||
[Write, Description("The name of the workgroup.")] String WorkGroupName; | ||
[Write, Description("The value assigned here will be set as the local computer description.")] String Description; | ||
[Read, Description("A read-only property that specifies the organizational unit that the computer account is currently in.")] String CurrentOU; | ||
}; |
4 changes: 4 additions & 0 deletions
4
Modules/xComputerManagement/DSCResources/MSFT_xComputer/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Description | ||
|
||
The resource allows you to configure a computer by changing its name and | ||
description and modifying its Active Directory domain or workgroup membership. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
Modules/xComputerManagement/DSCResources/MSFT_xOfflineDomainJoin/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Description | ||
|
||
The resource allows you to join computers to an Active Directory domain using an | ||
[Offline Domain Join](https://technet.microsoft.com/en-us/library/offline-domain-join-djoin-step-by-step(v=ws.10).aspx) | ||
request file. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
Modules/xComputerManagement/DSCResources/MSFT_xPowerPlan/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Description | ||
|
||
The resource allows specifying a power plan to activate. |
12 changes: 6 additions & 6 deletions
12
...owerPlan/en-US/MSFT_xPowerPlan.schema.mfl → ...owerPlan/en-US/MSFT_xPowerPlan.schema.mfl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[Description("This resource is used to activate a power plan.") : Amended,AMENDMENT, LOCALE("MS_409")] | ||
class MSFT_xPowerPlan : OMI_BaseResource | ||
{ | ||
[Key, Description("Specifies the resource is a single instance, the value must be 'Yes'.") : Amended] String IsSingleInstance; | ||
[Description("The name of the power plan to activate.") : Amended] String Name; | ||
}; | ||
[Description("This resource is used to activate a power plan.") : Amended,AMENDMENT, LOCALE("MS_409")] | ||
class MSFT_xPowerPlan : OMI_BaseResource | ||
{ | ||
[Key, Description("Specifies the resource is a single instance, the value must be 'Yes'.") : Amended] String IsSingleInstance; | ||
[Description("The name of the power plan to activate.") : Amended] String Name; | ||
}; |
File renamed without changes.
Oops, something went wrong.