forked from limiteddenial/PrintManagementDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrinterDriver_AddMultipleDrivers_Config.ps1
More file actions
44 lines (41 loc) · 1.11 KB
/
PrinterDriver_AddMultipleDrivers_Config.ps1
File metadata and controls
44 lines (41 loc) · 1.11 KB
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
<#PSScriptInfo
.VERSION 2.0.0.0
.GUID 313aaa79-c93b-4241-af95-61d1eb899aa4
.AUTHOR Eric Boersma
.TAGS DSCConfiguration
.LICENSEURI https://github.com/limiteddenial/PrintManagementDsc/blob/master/LICENSE
.PROJECTURI https://github.com/limiteddenial/PrintManagementDsc
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES First version.
.PRIVATEDATA 2016-DataCenter,2016-DataCenter-Server-Core
#>
<#
.DESCRIPTION
Installs multiple print drivers from the same source inf file
#>
configuration PrinterDriver_AddMultipleDrivers_Config
{
param
(
[Parameter()]
[System.String[]]
$NodeName = 'localhost'
)
Import-DSCResource -ModuleName PrintManagementDsc
node $NodeName
{
PrinterDriver XeroxGlobal
{
Ensure = "Present"
Name = @(
"Xerox Global Print Driver PCL6"
"Xerox Global Print Driver PS"
)
Version = "1.2.3.4"
Source = "C:\Drivers\Xerox\x2UNiVX.inf"
} # End PrinterDriver
} # End Node
} # End Configuration