SQL 2008 SMO 10.00.1600.22
This commit is contained in:
18
SQL2008.SMO/tools/chocolateyInstall.ps1
Normal file
18
SQL2008.SMO/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,18 @@
|
||||
$package = 'SQL2008.SMO'
|
||||
|
||||
try {
|
||||
$params = @{
|
||||
packageName = $package;
|
||||
fileType = 'msi';
|
||||
silentArgs = '/quiet',
|
||||
url = 'http://go.microsoft.com/fwlink/?LinkId=123708&clcid=0x409'
|
||||
url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123709&clcid=0x409'
|
||||
}
|
||||
|
||||
Install-ChocolateyPackage @params
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
Reference in New Issue
Block a user