diff --git a/MSXML6.SP1/MSXML6.SP1.nuspec b/MSXML6.SP1/MSXML6.SP1.nuspec
new file mode 100644
index 0000000..e521f30
--- /dev/null
+++ b/MSXML6.SP1/MSXML6.SP1.nuspec
@@ -0,0 +1,36 @@
+
+
+
+ MSXML6.SP1
+ Microsoft Core XML Services 6.0 Service Pack 1
+ 6.10.1129.0
+ Microsoft
+ Ethan Brown
+ 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.
+ 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.
+
+ http://www.microsoft.com/en-us/download/details.aspx?id=6276
+ XML MSXML services
+ http://archive.msdn.microsoft.com/MSXML/Project/License.aspx
+ false
+
+
+
+
+
+
diff --git a/MSXML6.SP1/tools/chocolateyInstall.ps1 b/MSXML6.SP1/tools/chocolateyInstall.ps1
new file mode 100644
index 0000000..f02e76d
--- /dev/null
+++ b/MSXML6.SP1/tools/chocolateyInstall.ps1
@@ -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
+}
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.NativeClient/SQL2008.NativeClient.nuspec b/SQL2008.NativeClient/SQL2008.NativeClient.nuspec
new file mode 100644
index 0000000..03f61df
--- /dev/null
+++ b/SQL2008.NativeClient/SQL2008.NativeClient.nuspec
@@ -0,0 +1,23 @@
+
+
+
+ SQL2008.NativeClient
+ Microsoft SQL Server 2008 Native Client
+ 10.00.1600.22
+ Microsoft
+ Ethan Brown
+ 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.
+ 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.
+ http://www.microsoft.com/en-us/download/details.aspx?id=16177
+ SQL SQL2008 Native Client ODBC OLEDB
+
+ false
+ https://github.com/Iristyle/ChocolateyPackages/raw/master/SQL2008.SMO/SQL2008.png
+
+
+
+
+
+
diff --git a/SQL2008.NativeClient/tools/chocolateyInstall.ps1 b/SQL2008.NativeClient/tools/chocolateyInstall.ps1
new file mode 100644
index 0000000..f972536
--- /dev/null
+++ b/SQL2008.NativeClient/tools/chocolateyInstall.ps1
@@ -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
+}
diff --git a/SQL2008.SMO/SQL2008.SMO.nuspec b/SQL2008.SMO/SQL2008.SMO.nuspec
new file mode 100644
index 0000000..5d33f7d
--- /dev/null
+++ b/SQL2008.SMO/SQL2008.SMO.nuspec
@@ -0,0 +1,30 @@
+
+
+
+ SQL2008.SMO
+ Microsoft SQL Server 2008 Management Objects
+ 10.00.1600.22
+ 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.
+ 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.
+
+ http://www.microsoft.com/en-us/download/details.aspx?id=16177
+ SQL SQL2008 SMO .NET XML CLR
+
+ false
+ https://github.com/Iristyle/ChocolateyPackages/raw/master/SQL2008.SMO/SQL2008.png
+
+
+
+
+
+
+
+
+
+
+
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
diff --git a/SQL2008.SMO/tools/chocolateyInstall.ps1 b/SQL2008.SMO/tools/chocolateyInstall.ps1
new file mode 100644
index 0000000..2605798
--- /dev/null
+++ b/SQL2008.SMO/tools/chocolateyInstall.ps1
@@ -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
+}