diff --git a/SQL2008.ClrTypes/SQL2008.ClrTypes.nuspec b/SQL2008.ClrTypes/SQL2008.ClrTypes.nuspec new file mode 100644 index 0000000..fe5080c --- /dev/null +++ b/SQL2008.ClrTypes/SQL2008.ClrTypes.nuspec @@ -0,0 +1,23 @@ + + + + SQL2008.ClrTypes + Microsoft SQL Server System CLR Types + 10.00.1600.22 + Microsoft + Ethan Brown + The SQL Server System CLR Types package contains the components implementing the new geometry, geography, and hierarchyid types in SQL Server 2008. This component can be installed separately from the server to allow client applications to use these types outside of the server. + The SQL Server System CLR Types package contains the components implementing the new geometry, geography, and hierarchyid types in SQL Server 2008. This component can be installed separately from the server to allow client applications to use these types outside of the server. + http://www.microsoft.com/en-us/download/details.aspx?id=16177 + SQL SQL2008 .NET CLR + + false + https://github.com/Iristyle/ChocolateyPackages/raw/master/SQL2008.SMO/SQL2008.png + + + + + + diff --git a/SQL2008.ClrTypes/tools/chocolateyInstall.ps1 b/SQL2008.ClrTypes/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..c19cb10 --- /dev/null +++ b/SQL2008.ClrTypes/tools/chocolateyInstall.ps1 @@ -0,0 +1,18 @@ +$package = 'SQL2008.ClrTypes' + +try { + $params = @{ + packageName = $package; + fileType = 'msi'; + silentArgs = '/quiet'; + url = 'http://go.microsoft.com/fwlink/?LinkId=123721&clcid=0x409'; + url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123722&clcid=0x409'; + } + + Install-ChocolateyPackage @params + + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +} diff --git a/SQL2008.SMO/SQL2008.png b/SQL2008.SMO/SQL2008.png new file mode 100644 index 0000000..1873c45 Binary files /dev/null and b/SQL2008.SMO/SQL2008.png differ