Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wictorwilen/xwwdschelpers
DSC Helper Module
https://github.com/wictorwilen/xwwdschelpers
Last synced: 28 days ago
JSON representation
DSC Helper Module
- Host: GitHub
- URL: https://github.com/wictorwilen/xwwdschelpers
- Owner: wictorwilen
- Created: 2015-11-25T13:35:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-25T13:35:45.000Z (almost 9 years ago)
- Last Synced: 2024-05-01T13:05:32.342Z (6 months ago)
- Language: PowerShell
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# xWWDSCHelpers
The **xWWDSCHelpers** module is a collection of DSC Resources.
**All of the resources in the DSC Modulet are provided AS IS**
Details
-------**xSqlAlias** resource has following properties
- **AliasName**: Name of the SQL Alias (required)
- **SqlServerName**: Name of the SQL Server (required)
- **Port**: The Port to use (optional)
- **Ensure**: *Present* or *Absent* Determines whether the setting should be applied or removed (not implemented)Examples
--------```powershell
Configuration SqlAliasTest{
Import-DscResource -ModuleName xWWDSCHelpers
Node "localhost" {
xSqlAlias Alias1 {
AliasName = "Test"
SqlServerName = "Server1"
}xSqlAlias Alias2 {
AliasName = "TestWithPort"
SqlServerName = "Server1"
Port=14001
}
}
}
```