diff --git a/SQL2008.SMO/SQL2008.SMO.nuspec b/SQL2008.SMO/SQL2008.SMO.nuspec index 5d33f7d..a9aca51 100644 --- a/SQL2008.SMO/SQL2008.SMO.nuspec +++ b/SQL2008.SMO/SQL2008.SMO.nuspec @@ -3,10 +3,12 @@ SQL2008.SMO Microsoft SQL Server 2008 Management Objects - 10.00.1600.22 + 10.00.1600.23 Microsoft Ethan Brown - The SQL Server Management Objects (SMO) is a .NET Framework object model that enables software developers to create client-side applications to manage and administer SQL Server objects and services. + Note: This is really 10.00.1600.22, but had to be version bumped to fix an isuse in the package installer. + + The SQL Server Management Objects (SMO) is a .NET Framework object model that enables software developers to create client-side applications to manage and administer SQL Server objects and services. The SQL Server Management Objects (SMO) is a .NET Framework object model that enables software developers to create client-side applications to manage and administer SQL Server objects and services. This object model will work with SQL Server 2000, SQL Server 2005 and SQL Server 2008. Note: Microsoft SQL Server 2008 Management Objects Collection requires Microsoft Core XML Services (MSXML) 6.0 , Microsoft SQL Server Native Client, and Microsoft SQL Server System CLR Types. These are available on this page. diff --git a/SQL2008.SMO/tools/chocolateyInstall.ps1 b/SQL2008.SMO/tools/chocolateyInstall.ps1 index 2605798..438ffa3 100644 --- a/SQL2008.SMO/tools/chocolateyInstall.ps1 +++ b/SQL2008.SMO/tools/chocolateyInstall.ps1 @@ -4,9 +4,9 @@ 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' + 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