Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/citadelgroup/addefaultlocationdsc
Module for setting Active Directory default locations
https://github.com/citadelgroup/addefaultlocationdsc
active-directory activedirectory powershell powershell-dsc powershell-module
Last synced: 24 days ago
JSON representation
Module for setting Active Directory default locations
- Host: GitHub
- URL: https://github.com/citadelgroup/addefaultlocationdsc
- Owner: citadelgroup
- License: mit
- Created: 2019-02-10T22:18:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T22:40:14.000Z (over 5 years ago)
- Last Synced: 2024-04-23T05:44:41.333Z (7 months ago)
- Topics: active-directory, activedirectory, powershell, powershell-dsc, powershell-module
- Language: PowerShell
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ADDefaultLocationDsc
ADDefaultLocationDsc is a module written to provide additional Active Directory configuration resources.
## Resources
* [ADDefaultComputerLocation](#addefaultcomputerlocation): Provides a mechanism to set the default Active Directory location for Computer objects.
* [ADDefaultUserLocation](#addefaultuserlocation): Provides a mechanism to set the default Active Directory location for User objects.### ADDefaultComputerLocation
Provides a mechanism to set the default Active Directory location for Computer objects.
#### Requirements
* This must be run on an Active Directory Domain Controller
#### Parameters
* **[String] IsSingleInstance** _(Key)_: This value must be set to "Yes".
* **[String] TargetDN** _(Write)_: The OU or Container in X.500 format where Computer objects should be stored on creation.#### Read-Only Properties from Get-TargetResource
None
#### Examples
* [Redirect new Computer objects](https://github.com/citadelgroup/ADDefaultLocationDsc/blob/master/Examples/Sample_ADDefaultComputerLocation.ps1)
### ADDefaultUserLocation
Provides a mechanism to set the default Active Directory location for User objects.
#### Requirements
None
#### Parameters
* **[String] IsSingleInstance** _(Key)_: This value must be set to "Yes".
* **[String] TargetDN** _(Write)_: The OU or Container in X.500 format where User objects should be stored on creation.#### Read-Only Properties from Get-TargetResource
None
#### Examples
* [Redirect new Computer objects](https://github.com/citadelgroup/ADDefaultLocationDsc/blob/master/Examples/Sample_ADDefaultUserLocation.ps1)
## Versions
### 1.0.0
* Initial release of ADDefaultLocationDsc.