SQL 2008 SMO 10.00.1600.22

This commit is contained in:
Iristyle
2012-10-12 17:15:11 -04:00
parent 1b962143d3
commit 039c70efe7
2 changed files with 48 additions and 0 deletions

View 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
}