forked from dsccommunity/xPSDesiredStateConfiguration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSample_InstallMSIProductId_xPackage.ps1
More file actions
42 lines (34 loc) · 1.03 KB
/
Sample_InstallMSIProductId_xPackage.ps1
File metadata and controls
42 lines (34 loc) · 1.03 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
<#
Simple installer that installs an msi package and matches based on the product id.
#>
Configuration Example
{
param
(
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String] $PackageName,
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String] $SourcePath,
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String] $ProductId
)
Import-DscResource -ModuleName xPSDesiredStateConfiguration
Node localhost
{
xPackage t1
{
Ensure = "Present"
Name = $PackageName
Path = $SourcePath
ProductId = $ProductId
}
}
}
<#
Sample use (parameter values need to be changed according to your scenario):
# Create the MOF file using the configuration data
Sample -OutputPath $OutputPath -ConfigurationData $Global:AllNodes -PackageName "Package Name" -SourcePath "\\software\installer.msi" -ProductId "{F06FB2D7-C22C-4987-9545-7C3B15BBBD60}"
#>