-
Notifications
You must be signed in to change notification settings - Fork 83
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 #18 from PowerShell/dev
Release of version 1.4.0.0 of xComputerManagement
- Loading branch information
Showing
6 changed files
with
180 additions
and
27 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
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,9 +1,11 @@ | ||
[ClassVersion("1.0.1.0"), FriendlyName("xComputer")] | ||
class MSFT_xComputer : OMI_BaseResource | ||
{ | ||
[key] string Name; | ||
[write] string DomainName; | ||
[write,EmbeddedInstance("MSFT_Credential")] String Credential; | ||
[write,EmbeddedInstance("MSFT_Credential")] String UnjoinCredential; | ||
[write] string WorkGroupName; | ||
}; | ||
[ClassVersion("1.0.1.0"), FriendlyName("xComputer")] | ||
class MSFT_xComputer : OMI_BaseResource | ||
{ | ||
[key] string Name; | ||
[write] string DomainName; | ||
[write] string JoinOU; | ||
[read] string CurrentOU; | ||
[write,EmbeddedInstance("MSFT_Credential")] String Credential; | ||
[write,EmbeddedInstance("MSFT_Credential")] String UnjoinCredential; | ||
[write] string WorkGroupName; | ||
}; |
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
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
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
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