forked from limiteddenial/PrintManagementDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrinterDriver_AddDriver_Config.ps1
More file actions
41 lines (38 loc) · 1005 Bytes
/
PrinterDriver_AddDriver_Config.ps1
File metadata and controls
41 lines (38 loc) · 1005 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
34
35
36
37
38
39
40
41
<#PSScriptInfo
.VERSION 2.0.0.0
.GUID 8ce048ce-e8ec-427d-ad91-a4b695409cac
.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 a print driver
#>
configuration PrinterDriver_AddDriver_Config
{
param
(
[Parameter()]
[System.String[]]
$NodeName = 'localhost'
)
Import-DSCResource -ModuleName PrintManagementDsc
node $NodeName
{
PrinterDriver XeroxGlobal
{
Ensure = "Present"
Name = "Xerox Global Print Driver PCL6"
Version = "1.2.3.4"
Source = "C:\Drivers\Xerox\x2UNiVX.inf"
} # End PrinterDriver
} # End Node
} # End Configuration