Typo in SMO package script - forced version bump

This commit is contained in:
Iristyle
2012-10-12 18:53:59 -04:00
parent 4357559fe9
commit 1bd30514e9
2 changed files with 7 additions and 5 deletions

View File

@@ -3,10 +3,12 @@
<metadata> <metadata>
<id>SQL2008.SMO</id> <id>SQL2008.SMO</id>
<title>Microsoft SQL Server 2008 Management Objects</title> <title>Microsoft SQL Server 2008 Management Objects</title>
<version>10.00.1600.22</version> <version>10.00.1600.23</version>
<authors>Microsoft</authors> <authors>Microsoft</authors>
<owners>Ethan Brown</owners> <owners>Ethan Brown</owners>
<summary>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.</summary> <summary>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.</summary>
<description>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. <description>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. 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.
</description> </description>

View File

@@ -4,9 +4,9 @@ try {
$params = @{ $params = @{
packageName = $package; packageName = $package;
fileType = 'msi'; fileType = 'msi';
silentArgs = '/quiet', silentArgs = '/quiet';
url = 'http://go.microsoft.com/fwlink/?LinkId=123708&clcid=0x409' url = 'http://go.microsoft.com/fwlink/?LinkId=123708&clcid=0x409';
url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123709&clcid=0x409' url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123709&clcid=0x409';
} }
Install-ChocolateyPackage @params Install-ChocolateyPackage @params