SQL 2008 SMO 10.00.1600.22
This commit is contained in:
		
							
								
								
									
										30
									
								
								SQL2008.SMO/SQL2008.SMO.nuspec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								SQL2008.SMO/SQL2008.SMO.nuspec
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | |||||||
|  | <?xml version="1.0"?> | ||||||
|  | <package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||||||
|  |   <metadata> | ||||||
|  |     <id>SQL2008.SMO</id> | ||||||
|  |     <title>Microsoft SQL Server 2008 Management Objects</title> | ||||||
|  |     <version>10.00.1600.22</version> | ||||||
|  |     <authors>Microsoft</authors> | ||||||
|  |     <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> | ||||||
|  |     <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. | ||||||
|  |     </description> | ||||||
|  |     <projectUrl>http://www.microsoft.com/en-us/download/details.aspx?id=16177</projectUrl> | ||||||
|  |     <tags>SQL SQL2008 SMO .NET XML CLR</tags> | ||||||
|  |     <!-- Eula is in installer | ||||||
|  |     <licenseUrl></licenseUrl> | ||||||
|  |     --> | ||||||
|  |     <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||||||
|  |     <iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/SQL2008.SMO/SQL2008.png</iconUrl> | ||||||
|  |     <releaseNotes></releaseNotes> | ||||||
|  |     <dependencies> | ||||||
|  |         <dependency id="MSXML6.SP1" /> | ||||||
|  |         <dependency id="SQL2008.NativeClient" /> | ||||||
|  |         <dependency id="SQL2008.ClrTypes" /> | ||||||
|  |     </dependencies> | ||||||
|  |   </metadata> | ||||||
|  |   <files> | ||||||
|  |     <file src="tools\**" target="tools" /> | ||||||
|  |   </files> | ||||||
|  | </package> | ||||||
							
								
								
									
										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