-
Notifications
You must be signed in to change notification settings - Fork 32
Function SoftwareProduct
Mark Wragg edited this page Jun 17, 2019
·
2 revisions
Test the installed Software Packages.
Test the Existance of a Software Package or the Value of a given Property.
[Parameter(
Mandatory = $true,
Position = 1,
ParameterSetName = 'Set 1')]
[Parameter(
Mandatory = $true,
Position = 2,
ParameterSetName = 'Set 1')]
[Parameter(
Mandatory = $true,
Position = 3,
ParameterSetName = 'Set 1')]
Be, BeExactly, Exist, Match, MatchExactly
SoftwareProduct 'Microsoft .NET Framework 4.6.1' { Should Exist }
SoftwareProduct 'Microsoft SQL Server 2016' DisplayVersion { Should Be 13.0.1100.286 }
SoftwareProduct 'IIS 10.0 Express' InstallLocation { Should Match 'C:\Program Files (x86)' }
Getting Started
Contributing
Functions