36
MSXML6.SP1/MSXML6.SP1.nuspec
Normal file
36
MSXML6.SP1/MSXML6.SP1.nuspec
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<metadata>
|
||||
<id>MSXML6.SP1</id>
|
||||
<title>Microsoft Core XML Services 6.0 Service Pack 1</title>
|
||||
<version>6.10.1129.0</version>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>Ethan Brown</owners>
|
||||
<summary>MSXML 6.0 Service Pack 1 (MSXML6.1) has improved reliability, security, conformance with the XML 1.0 and XML Schema 1.0 W3C Recommendations, and compatibility with System.Xml 2.0.</summary>
|
||||
<description>MSXML 6.0 SP1 is intended as an upgrade path for existing MSXML 6.0, MSXML 3 and MSXML 4.
|
||||
|
||||
MSXML 6.0 SP1 will update the version of MSXML6.dll to 6.10.1129.0
|
||||
|
||||
MSXML 6.0 SP1 could also be installed without any previous versions of MSXML 6.0 on the computer.
|
||||
|
||||
MSXML 6.0 SP1 will be installed side by side with MSXML 3 and MSXML 4
|
||||
|
||||
MSXML 6.0 SP1 is also installed by
|
||||
1. SQL Server 2005 SP2 as a Feature Pack Update
|
||||
2. Windows Vista
|
||||
|
||||
This download is intended for machines that do not have Vista OS or have not chosen to update MSXML 6.0 as part of SQL Server 2005 SP2.
|
||||
</description>
|
||||
<projectUrl>http://www.microsoft.com/en-us/download/details.aspx?id=6276</projectUrl>
|
||||
<tags>XML MSXML services</tags>
|
||||
<licenseUrl>http://archive.msdn.microsoft.com/MSXML/Project/License.aspx</licenseUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<!--
|
||||
<iconUrl></iconUrl>
|
||||
<releaseNotes></releaseNotes>
|
||||
-->
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="tools\**" target="tools" />
|
||||
</files>
|
||||
</package>
|
26
MSXML6.SP1/tools/chocolateyInstall.ps1
Normal file
26
MSXML6.SP1/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,26 @@
|
||||
$package = 'MSXML6.SP1'
|
||||
|
||||
try {
|
||||
|
||||
#Vista or greater already ships with MSXML6
|
||||
if ([Environment]::OSVersion.Version -ge [Version]'6.0')
|
||||
{
|
||||
Write-ChocolateySuccess "Installation of $package is not necessary on this OS"
|
||||
return
|
||||
}
|
||||
|
||||
$params = @{
|
||||
packageName = $package;
|
||||
fileType = 'msi';
|
||||
silentArgs = '/qb';
|
||||
url = 'http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi'
|
||||
url64bit = 'http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi'
|
||||
}
|
||||
|
||||
Install-ChocolateyPackage @params
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
23
SQL2008.ClrTypes/SQL2008.ClrTypes.nuspec
Normal file
23
SQL2008.ClrTypes/SQL2008.ClrTypes.nuspec
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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.ClrTypes</id>
|
||||
<title>Microsoft SQL Server System CLR Types</title>
|
||||
<version>10.00.1600.22</version>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>Ethan Brown</owners>
|
||||
<summary>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.</summary>
|
||||
<description>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.</description>
|
||||
<projectUrl>http://www.microsoft.com/en-us/download/details.aspx?id=16177</projectUrl>
|
||||
<tags>SQL SQL2008 .NET 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>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="tools\**" target="tools" />
|
||||
</files>
|
||||
</package>
|
18
SQL2008.ClrTypes/tools/chocolateyInstall.ps1
Normal file
18
SQL2008.ClrTypes/tools/chocolateyInstall.ps1
Normal file
@@ -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
|
||||
}
|
23
SQL2008.NativeClient/SQL2008.NativeClient.nuspec
Normal file
23
SQL2008.NativeClient/SQL2008.NativeClient.nuspec
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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.NativeClient</id>
|
||||
<title>Microsoft SQL Server 2008 Native Client</title>
|
||||
<version>10.00.1600.22</version>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>Ethan Brown</owners>
|
||||
<summary>Microsoft SQL Server 2008 Native Client (SQL Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver. It contains run-time support for applications using native-code APIs (ODBC, OLE DB and ADO) to connect to Microsoft SQL Server 2000, 2005, or 2008.</summary>
|
||||
<description>Microsoft SQL Server 2008 Native Client (SQL Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver. It contains run-time support for applications using native-code APIs (ODBC, OLE DB and ADO) to connect to Microsoft SQL Server 2000, 2005, or 2008. SQL Native Client should be used to create new applications or enhance existing applications that need to take advantage of new SQL Server 2008 features. This redistributable installer for SQL Native Client installs the client components needed during run time to take advantage of new SQL Server 2008 features, and optionally installs the header files needed to develop an application that uses the SQL Native Client API.</description>
|
||||
<projectUrl>http://www.microsoft.com/en-us/download/details.aspx?id=16177</projectUrl>
|
||||
<tags>SQL SQL2008 Native Client ODBC OLEDB</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>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="tools\**" target="tools" />
|
||||
</files>
|
||||
</package>
|
18
SQL2008.NativeClient/tools/chocolateyInstall.ps1
Normal file
18
SQL2008.NativeClient/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,18 @@
|
||||
$package = 'SQL2008.NativeClient'
|
||||
|
||||
try {
|
||||
$params = @{
|
||||
packageName = $package;
|
||||
fileType = 'msi';
|
||||
silentArgs = '/quiet';
|
||||
url = 'http://go.microsoft.com/fwlink/?LinkId=123717&clcid=0x409';
|
||||
url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123718&clcid=0x409';
|
||||
}
|
||||
|
||||
Install-ChocolateyPackage @params
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
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>
|
BIN
SQL2008.SMO/SQL2008.png
Normal file
BIN
SQL2008.SMO/SQL2008.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
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