forked from dsccommunity/RemoteDesktopServicesDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-RDSessionDeployment_Full.ps1
More file actions
33 lines (31 loc) · 1000 Bytes
/
1-RDSessionDeployment_Full.ps1
File metadata and controls
33 lines (31 loc) · 1000 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-f7716b814a53
.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 RDSessionDeployment_Full
{
import-dscresource -modulename RemoteDesktopServicesDsc
node localhost
{
RDSessionDeployment TheBigDeployment
{
ConnectionBroker = 'RDBC1.contoso.com'
WebAccessServer = 'RDWA1.contoso.com'
SessionHost = 'RDSH1.contoso.com', 'RDSH2.contoso.com'
}
}
}