-
Notifications
You must be signed in to change notification settings - Fork 62
/
WVD-ConfigurationData.psd1
99 lines (49 loc) · 2.07 KB
/
WVD-ConfigurationData.psd1
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#
# ConfigurationData.psd1
#
@{
AllNodes = @(
@{
NodeName = 'LocalHost'
PSDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
# IncludesAllSubfeatures
WindowsFeaturePresent = @('Web-Server')
DirectoryPresent = @(
'F:\Source'
)
DirectoryPresentSource = @(
@{
SourcePath = '\\{0}.file.core.windows.net\source\WVD\'
DestinationPath = 'F:\Source\WVD\'
MatchSource = $true
}
)
DisksPresent = @(
@{DriveLetter = 'F'; DiskID = '2' }
)
WVDInstall = @(
@{
PoolNameSuffix = 'hp01'
PackagePath = 'F:\Source\WVD\Microsoft.RDInfra.RDAgent.Installer-x64-1.0.2548.6500.msi'
}
)
SoftwarePackagePresent = @(
@{
Name = 'Remote Desktop Agent Boot Loader'
Path = 'F:\Source\WVD\Microsoft.RDInfra.RDAgentBootLoader.Installer-x64.msi'
ProductId = '{41439A3F-FED7-478A-A71B-8E15AF8A6607}'
Arguments = '/log "F:\Source\WVD\AgentBootLoaderInstall.txt"'
}
)
RegistryKeyPresent = @(
@{ Key = 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced';
ValueName = 'DontUsePowerShellOnWinX'; ValueData = 0 ; ValueType = 'Dword'
},
@{ Key = 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced';
ValueName = 'TaskbarGlomLevel'; ValueData = 1 ; ValueType = 'Dword'
}
)
}
)
}