-
Notifications
You must be signed in to change notification settings - Fork 224
/
MSFT_SqlRSSetup.psm1
807 lines (662 loc) · 23 KB
/
MSFT_SqlRSSetup.psm1
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
$script:resourceModulePath = Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent
$script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPath 'Modules'
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlRSSetup'
<#
.SYNOPSIS
Returns the current state of the Microsoft SQL Server Reporting Service
instance.
.PARAMETER InstanceName
Name of the Microsoft SQL Server Reporting Service instance to installed.
This can only be set to 'SSRS'. { 'SSRS' }
.PARAMETER IAcceptLicenseTerms
Accept licens terms. This must be set to 'Yes'. { 'Yes' }
.PARAMETER SourcePath
The path to the installation media file to be used for installation,
e.g an UNC path to a shared resource. Environment variables can be used
in the path.
.NOTES
The following properties are always returning $null because it's currently
unknown how to return that information.
- ProductKey
- Edition
The following properties always return $null on purpose. This could be
changed in the future.
- Action
- SourceCredential
- ForceRestart
- EditionUpgrade
- VersionUpgrade
- LogPath
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[ValidateSet('SSRS')]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[ValidateSet('Yes')]
[System.String]
$IAcceptLicenseTerms,
[Parameter(Mandatory = $true)]
[System.String]
$SourcePath
)
$returnObject = @{
InstanceName = $null
IAcceptLicenseTerms = $IAcceptLicenseTerms
SourcePath = $SourcePath
Action = $null
SourceCredential = $null
ProductKey = $null
ForceRestart = $false
EditionUpgrade = $false
VersionUpgrade = $false
Edition = $null
LogPath = $null
InstallFolder = $null
ErrorDumpDirectory = $null
CurrentVersion = $null
ServiceName = $null
}
$InstanceName = $InstanceName.ToUpper()
$getRegistryPropertyValueParameters = @{
Path = 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\RS'
Name = $InstanceName
}
$reportingServiceInstanceId = Get-RegistryPropertyValue @getRegistryPropertyValueParameters
if ($reportingServiceInstanceId)
{
Write-Verbose -Message (
$script:localizedData.FoundInstance -f $InstanceName
)
# InstanceName
$returnObject['InstanceName'] = $InstanceName
# InstallFolder
$getRegistryPropertyValueParameters = @{
Path = 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\SSRS\Setup'
Name = 'InstallRootDirectory'
}
$returnObject['InstallFolder'] = Get-RegistryPropertyValue @getRegistryPropertyValueParameters
# ServiceName
$getRegistryPropertyValueParameters['Name'] = 'ServiceName'
$returnObject['ServiceName'] = Get-RegistryPropertyValue @getRegistryPropertyValueParameters
# ErrorDumpDirectory
$getRegistryPropertyValueParameters = @{
Path = 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\SSRS\CPE'
Name = 'ErrorDumpDir'
}
$returnObject['ErrorDumpDirectory'] = Get-RegistryPropertyValue @getRegistryPropertyValueParameters
# CurrentVersion
$getPackageParameters = @{
Name = 'Microsoft SQL Server Reporting Services'
ProviderName = 'Programs'
ErrorAction = 'SilentlyContinue'
# Get-Package returns a lot of excessive information that we don't need.
Verbose = $false
}
$reportingServicesPackage = Get-Package @getPackageParameters
if ($reportingServicesPackage)
{
Write-Verbose -Message (
$script:localizedData.VersionFound -f $reportingServicesPackage.Version
)
$returnObject['CurrentVersion'] = $reportingServicesPackage.Version
}
else
{
Write-Warning -Message $script:localizedData.PackageNotFound
}
}
else
{
Write-Verbose -Message (
$script:localizedData.InstanceNotFound -f $InstanceName
)
}
return $returnObject
}
<#
.SYNOPSIS
Installs the the Microsoft SQL Server Reporting Service instance.
.PARAMETER InstanceName
Name of the Microsoft SQL Server Reporting Service instance to installed.
This can only be set to 'SSRS'. { 'SSRS' }
.PARAMETER IAcceptLicenseTerms
Accept licens terms. This must be set to 'Yes'. { 'Yes' }
.PARAMETER SourcePath
The path to the installation media file to be used for installation,
e.g an UNC path to a shared resource. Environment variables can be used
in the path.
.PARAMETER Action
The action to be performed. Default value is 'Install' which performs
either install or upgrade.
{ *Install* | Uninstall }
.PARAMETER SourceCredential
Credentials used to access the path set in the parameter 'SourcePath'.
.PARAMETER SuppressRestart
Suppresses any attempts to restart.
.PARAMETER ProductKey
Sets the custom license key, e.g. '12345-12345-12345-12345-12345'.
.PARAMETER ForceRestart
Forces a restart after installation is finished.
.PARAMETER EditionUpgrade
Upgrades the edition of the installed product. Requires that either the
ProductKey or the Edition parameter is also assigned. Default is $false.
.PARAMETER VersionUpgrade
Upgrades installed product version, if the major product version of the
source executable is higher than the major current version. Requires that
either the ProductKey or the Edition parameter is also assigned. Default
is $false.
Not used in Set-TargetResource. The default is that the installation
does upgrade. This variable is only used in Test-TargetResource to return
false if the major version is different.
.PARAMETER Edition
Sets the custom free edition.
{ 'Development' | 'Evaluation' | 'ExpressAdvanced' }
.PARAMETER LogPath
Specifies the setup log file location, e.g. 'log.txt'. By default, log
files are created under %TEMP%.
.PARAMETER InstallFolder
Sets the install folder, e.g. 'C:\Program Files\SSRS'. Default value is
'C:\Program Files\Microsoft SQL Server Reporting Services'.
.PARAMETER SetupProcessTimeout
The timeout, in seconds, to wait for the setup process to finish.
Default value is 7200 seconds (2 hours). If the setup process does not
finish before this time, and error will be thrown.
#>
function Set-TargetResource
{
<#
Suppressing this rule because $global:DSCMachineStatus is used to trigger
a Restart, either by force or when there are pending changes.
#>
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidGlobalVars', '')]
<#
Suppressing this rule because $global:DSCMachineStatus is only set,
never used (by design of Desired State Configuration).
#>
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Scope='Function', Target='DSCMachineStatus')]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateSet('SSRS')]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[ValidateSet('Yes')]
[System.String]
$IAcceptLicenseTerms,
[Parameter(Mandatory = $true)]
[System.String]
$SourcePath,
[Parameter()]
[ValidateSet('Install','Uninstall')]
[System.String]
$Action = 'Install',
[Parameter()]
[System.Management.Automation.PSCredential]
$SourceCredential,
[Parameter()]
[System.Boolean]
$SuppressRestart,
[Parameter()]
[System.String]
$ProductKey,
[Parameter()]
[System.Boolean]
$ForceRestart,
[Parameter()]
[System.Boolean]
$EditionUpgrade,
[Parameter()]
[System.Boolean]
$VersionUpgrade,
[Parameter()]
[ValidateSet('Development','Evaluation','ExpressAdvanced')]
[System.String]
$Edition,
[Parameter()]
[System.String]
$LogPath,
[Parameter()]
[System.String]
$InstallFolder,
[Parameter()]
[System.UInt32]
$SetupProcessTimeout = 7200
)
# Must either choose ProductKey or Edition, not both.
if ($Action -eq 'Install' -and $PSBoundParameters.ContainsKey('Edition') -and $PSBoundParameters.ContainsKey('ProductKey'))
{
$errorMessage = $script:localizedData.EditionInvalidParameter
New-InvalidArgumentException -ArgumentName 'Edition, ProductKey' -Message $errorMessage
}
# Must either choose ProductKey or Edition, not none.
if ($Action -eq 'Install' -and -not $PSBoundParameters.ContainsKey('Edition') -and -not $PSBoundParameters.ContainsKey('ProductKey'))
{
$errorMessage = $script:localizedData.EditionMissingParameter
New-InvalidArgumentException -ArgumentName 'Edition, ProductKey' -Message $errorMessage
}
if (-not (Test-Path -Path $SourcePath) -or (Get-Item -Path $SourcePath).Extension -ne '.exe')
{
$errorMessage = $script:localizedData.SourcePathNotFound -f $SourcePath
New-InvalidArgumentException -ArgumentName 'SourcePath' -Message $errorMessage
}
$InstanceName = $InstanceName.ToUpper()
$SourcePath = [Environment]::ExpandEnvironmentVariables($SourcePath)
$parametersToEvaluateTrailingSlash = @(
'SourcePath',
'InstallFolder'
)
# Making sure paths are correct.
foreach ($parameterName in $parametersToEvaluateTrailingSlash)
{
if ($PSBoundParameters.ContainsKey($parameterName))
{
$parameterValue = Get-Variable -Name $parameterName -ValueOnly
$formattedPath = Format-Path -Path $parameterValue -TrailingSlash
Set-Variable -Name $parameterName -Value $formattedPath
}
}
if ($SourceCredential)
{
$executableParentFolder = Split-Path -Path $SourcePath -Parent
$executableFileName = Split-Path -Path $SourcePath -Leaf
$invokeInstallationMediaCopyParameters = @{
SourcePath = $executableParentFolder
SourceCredential = $SourceCredential
PassThru = $true
}
$newExecutableParentFolder = Invoke-InstallationMediaCopy @invokeInstallationMediaCopyParameters
# Switch SourcePath to point to the new local location.
$SourcePath = Join-Path -Path $newExecutableParentFolder -ChildPath $executableFileName
}
Write-Verbose -Message ($script:localizedData.UsingExecutable -f $SourcePath)
$setupArguments = @{
Quiet = [System.Management.Automation.SwitchParameter] $true
}
if ($Action -eq 'Install')
{
$setupArguments += @{
IAcceptLicenseTerms = [System.Management.Automation.SwitchParameter] $true
}
}
else
{
$setupArguments += @{
'uninstall' = [System.Management.Automation.SwitchParameter] $true
}
}
<#
This is a list of parameters that are allowed to be translated into
arguments.
#>
$allowedParametersAsArguments = @(
'ProductKey'
'SuppressRestart'
'EditionUpgrade'
'Edition'
'LogPath'
'InstallFolder'
)
$argumentParameters = $PSBoundParameters.Keys | Where-Object -FilterScript {
$_ -in $allowedParametersAsArguments
}
<#
Handle translation between parameter name and argument name.
Also making sure using the correct casing, e.g. 'log' and not 'Log'.
#>
switch ($argumentParameters)
{
'ProductKey'
{
$setupArguments += @{
'PID' = $ProductKey
}
}
'SuppressRestart'
{
$setupArguments += @{
'norestart' = [System.Management.Automation.SwitchParameter] $true
}
}
'EditionUpgrade'
{
$setupArguments += @{
'EditionUpgrade' = [System.Management.Automation.SwitchParameter] $true
}
}
'Edition'
{
$setupArguments += @{
'Edition' = Convert-EditionName -Name $Edition
}
}
'LogPath'
{
$setupArguments += @{
'log' = $LogPath
}
}
default
{
$setupArguments += @{
$_ = Get-Variable -Name $_ -ValueOnly
}
}
}
# Build the argument string to be passed to setup
$argumentString = ''
foreach ($currentSetupArgument in $setupArguments.GetEnumerator())
{
# Arrays are handled specially
if ($currentSetupArgument.Value -is [System.Management.Automation.SwitchParameter])
{
$argumentString += '/{0}' -f $currentSetupArgument.Key
}
else
{
$argumentString += '/{0}={1}' -f $currentSetupArgument.Key, $currentSetupArgument.Value
}
# Add a space between arguments.
$argumentString += ' '
}
# Trim whitespace at start and end of string.
$argumentString = $argumentString.Trim()
# Save the arguments for the log output
$logOutput = $argumentString
# Replace sensitive values for verbose output
if ($PSBoundParameters.ContainsKey('ProductKey'))
{
$logOutput = $logOutput -replace $ProductKey, '*****-*****-*****-*****-*****'
}
Write-Verbose -Message ($script:localizedData.SetupArguments -f $logOutput)
<#
This handles when PsDscRunAsCredential is set, or running
as the SYSTEM account.
#>
$startProcessParameters = @{
FilePath = $SourcePath
ArgumentList = $argumentString
Timeout = $SetupProcessTimeout
}
$processExitCode = Start-SqlSetupProcess @startProcessParameters
Write-Verbose -Message ($script:localizedData.SetupExitMessage -f $processExitCode)
if ($Action -eq 'Install')
{
$localizedAction = $script:localizedData.Install
}
else
{
$localizedAction = $script:localizedData.Uninstall
}
if ($processExitCode -eq 0)
{
Write-Verbose -Message ($script:localizedData.SetupSuccessful -f $localizedAction)
}
elseif ($processExitCode -eq 3010)
{
Write-Warning -Message ($script:localizedData.SetupSuccessfulRestartRequired -f $localizedAction)
$global:DSCMachineStatus = 1
}
else
{
if ($PSBoundParameters.ContainsKey('LogPath'))
{
$errorMessage = $script:localizedData.SetupFailedWithLog -f $LogPath
}
else
{
$errorMessage = $script:localizedData.SetupFailed
}
New-InvalidResultException -Message $errorMessage
}
<#
If ForceRestart is set it will always restart, and override SuppressRestart.
If SuppressRestart is set it will always override any pending restart.
#>
if ($ForceRestart)
{
$global:DSCMachineStatus = 1
}
elseif ($global:DSCMachineStatus -eq 1 -and $SuppressRestart)
{
# Suppressing restart to make sure the node is not restarted.
$global:DSCMachineStatus = 0
Write-Verbose -Message $script:localizedData.SuppressRestart
}
elseif (-not $SuppressRestart -and (Test-PendingRestart))
{
$global:DSCMachineStatus = 1
}
if ($global:DSCMachineStatus -eq 1)
{
Write-Verbose -Message $script:localizedData.Restart
}
}
<#
.SYNOPSIS
Tests if the Microsoft SQL Server Reporting Service instance is installed.
.PARAMETER InstanceName
Name of the Microsoft SQL Server Reporting Service instance to installed.
This can only be set to 'SSRS'. { 'SSRS' }
.PARAMETER IAcceptLicenseTerms
Accept licens terms. This must be set to 'Yes'. { 'Yes' }
.PARAMETER SourcePath
The path to the installation media file to be used for installation,
e.g an UNC path to a shared resource. Environment variables can be used
in the path.
.PARAMETER Action
The action to be performed. Default value is 'Install' which performs
either install or upgrade.
{ *Install* | Uninstall }
.PARAMETER SourceCredential
Credentials used to access the path set in the parameter 'SourcePath'.
.PARAMETER SuppressRestart
Suppresses any attempts to restart.
.PARAMETER ProductKey
Sets the custom license key, e.g. '12345-12345-12345-12345-12345'.
.PARAMETER ForceRestart
Forces a restart after installation is finished.
.PARAMETER EditionUpgrade
Upgrades the edition of the installed product. Requires that either the
ProductKey or the Edition parameter is also assigned. Default is $false.
.PARAMETER VersionUpgrade
Upgrades installed product version, if the major product version of the
source executable is higher than the major current version. Requires that
either the ProductKey or the Edition parameter is also assigned. Default
is $false.
.PARAMETER Edition
Sets the custom free edition.
{ 'Development' | 'Evaluation' | 'ExpressAdvanced' }
.PARAMETER LogPath
Specifies the setup log file location, e.g. 'log.txt'. By default, log
files are created under %TEMP%.
.PARAMETER InstallFolder
Sets the install folder, e.g. 'C:\Program Files\SSRS'. Default value is
'C:\Program Files\Microsoft SQL Server Reporting Services'.
.PARAMETER SetupProcessTimeout
The timeout, in seconds, to wait for the setup process to finish.
Default value is 7200 seconds (2 hours). If the setup process does not
finish before this time, and error will be thrown.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[ValidateSet('SSRS')]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[ValidateSet('Yes')]
[System.String]
$IAcceptLicenseTerms,
[Parameter(Mandatory = $true)]
[System.String]
$SourcePath,
[Parameter()]
[ValidateSet('Install','Uninstall')]
[System.String]
$Action = 'Install',
[Parameter()]
[System.Management.Automation.PSCredential]
$SourceCredential,
[Parameter()]
[System.Boolean]
$SuppressRestart,
[Parameter()]
[System.String]
$ProductKey,
[Parameter()]
[System.Boolean]
$ForceRestart,
[Parameter()]
[System.Boolean]
$EditionUpgrade,
[Parameter()]
[System.Boolean]
$VersionUpgrade,
[Parameter()]
[ValidateSet('Development','Evaluation','ExpressAdvanced')]
[System.String]
$Edition,
[Parameter()]
[System.String]
$LogPath,
[Parameter()]
[System.String]
$InstallFolder,
[Parameter()]
[System.UInt32]
$SetupProcessTimeout = 7200
)
Write-Verbose -Message (
$script:localizedData.TestingConfiguration
)
$getTargetResourceParameters = @{
InstanceName = $InstanceName
IAcceptLicenseTerms = $IAcceptLicenseTerms
SourcePath = $SourcePath
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
$returnValue = $false
<#
We determine if the Microsoft SQL Server Reporting Service instance is
installed if the instance name is found in the registry.
#>
if ($Action -eq 'Install')
{
$fileVersion = Get-FileProductVersion -Path $SourcePath
if ($getTargetResourceResult.InstanceName)
{
$installedVersion = [System.Version] $getTargetResourceResult.CurrentVersion
# The major version is evaluated if VersionUpgrade is set to $true
if (-not $VersionUpgrade -or ($VersionUpgrade -and $installedVersion -ge $fileVersion))
{
$returnValue = $true
}
else
{
Write-Verbose -Message (
$script:localizedData.WrongVersionFound `
-f $fileVersion.ToString(), $installedVersion.ToString()
)
}
}
else
{
Write-Verbose -Message (
$script:localizedData.MissingVersion `
-f $fileVersion.ToString()
)
}
}
if ($Action -eq 'Uninstall' -and $null -eq $getTargetResourceResult.InstanceName)
{
$returnValue = $true
}
return $returnValue
}
<#
.SYNOPSIS
Converts between the edition names used by the resource and the
installation media.
.PARAMETER Name
The edition name to convert.
.OUTPUTS
Returns the equivalent name of what was provided in the parameter Name.
For example, if Name is set to 'Dev', the cmdlet returns 'Development'.
If Name is set to 'Development', the cmdlet returns 'Dev'.
#>
function Convert-EditionName
{
[CmdletBinding()]
[OutputType([System.String])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Name
)
switch ($Name)
{
# Resource edition names
'Development'
{
$convertEditionNameResult = 'Dev'
}
'Evaluation'
{
$convertEditionNameResult = 'Eval'
}
'ExpressAdvanced'
{
$convertEditionNameResult = 'ExprAdv'
}
# Installation media edition names
'Dev'
{
$convertEditionNameResult = 'Development'
}
'Eval'
{
$convertEditionNameResult = 'Evaluation'
}
'ExprAdv'
{
$convertEditionNameResult = 'ExpressAdvanced'
}
}
return $convertEditionNameResult
}
<#
.SYNOPSIS
Gets the product version of a executable.
.PARAMETER Path
The path to the executable to return product version for.
.OUTPUTS
Returns the product version as [System.Version] type.
#>
function Get-FileProductVersion
{
[CmdletBinding()]
[OutputType([System.Version])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Path
)
return [System.Version] (Get-Item -Path $Path).VersionInfo.ProductVersion
}