-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path1-RDSessionCollection_Full.ps1
More file actions
33 lines (31 loc) · 985 Bytes
/
1-RDSessionCollection_Full.ps1
File metadata and controls
33 lines (31 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<#PSScriptInfo
.VERSION 1.0.0
.GUID 627c0685-8348-4514-bbf7-f7616b814a53
.AUTHOR DSC Community
.COMPANYNAME DSC Community
.COPYRIGHT DSC Community contributors. All rights reserved.
.TAGS DSCConfiguration
.LICENSEURI https://github.com/dsccommunity/RemoteDesktopServicesDsc/blob/main/LICENSE
.PROJECTURI https://github.com/dsccommunity/RemoteDesktopServicesDsc
.ICONURI https://dsccommunity.org/images/DSC_Logo_300p.png
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
First version.
.PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core
#>
#requires -Module RemoteDesktopServicesDsc
configuration RDSessionCollection_Full
{
Import-DscResource -modulename RemoteDesktopServicesDsc
node localhost
{
RDSessionCollection WeLoveDsc
{
ConnectionBroker = 'RDCB1.contoso.com'
CollectionName = 'WeLoveDsc'
SessionHost = 'RDSH1.contoso.com', 'RDSH2.contoso.com'
}
}
}