├── .gitattributes ├── .gitignore ├── FixMissingMSI ├── App.config ├── FindSQLInstalls.vbs ├── FindWhat.Designer.cs ├── FindWhat.cs ├── FindWhat.resx ├── FixMissingMSI Readme.docx ├── FixMissingMSI Readme.pdf ├── FixMissingMSI.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Logger.cs ├── MSIHelper.cs ├── MSIPackage.cs ├── Manual │ └── FixMissingMSI Readme.pdf ├── Output.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertyComparer.cs ├── SQLProduct.cs ├── ScanForm.Designer.cs ├── ScanForm.cs ├── ScanForm.resx ├── SortableBindingList.cs ├── Utility.cs ├── app.manifest ├── myData.cs ├── myFind.cs ├── myRow.cs └── wix │ ├── Microsoft.Deployment.WindowsInstaller.Linq.dll │ ├── Microsoft.Deployment.WindowsInstaller.Linq.xml │ ├── Microsoft.Deployment.WindowsInstaller.Package.dll │ ├── Microsoft.Deployment.WindowsInstaller.Package.xml │ ├── Microsoft.Deployment.WindowsInstaller.dll │ └── Microsoft.Deployment.WindowsInstaller.xml ├── ProductBrowser ├── App.config ├── FindWhat.Designer.cs ├── FindWhat.cs ├── FindWhat.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Logger.cs ├── Product.cs ├── ProductBrowser.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Property.ico ├── ScanForm.Designer.cs ├── ScanForm.cs ├── ScanForm.resx ├── folder.ico ├── imageres_111.ico ├── myFind.cs └── wix │ ├── Microsoft.Deployment.WindowsInstaller.Linq.dll │ ├── Microsoft.Deployment.WindowsInstaller.Linq.xml │ ├── Microsoft.Deployment.WindowsInstaller.Package.dll │ ├── Microsoft.Deployment.WindowsInstaller.Package.xml │ ├── Microsoft.Deployment.WindowsInstaller.dll │ └── Microsoft.Deployment.WindowsInstaller.xml ├── README.md ├── SQLRegViewer ├── Document.docx ├── SQLMsiMsp │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SQLMsiMsp.csproj ├── SQLReg │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── Analysis │ │ ├── COMClass.cs │ │ ├── FromMSI.cs │ │ ├── Installer.cs │ │ ├── KnownKeys.cs │ │ ├── Services.cs │ │ └── Uninstall.cs │ ├── App.config │ ├── CleanupWarning.Designer.cs │ ├── CleanupWarning.cs │ ├── CleanupWarning.resx │ ├── Controller.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Logger.cs │ ├── MSIHelper.cs │ ├── Manual │ │ └── SQLRegistryViewer Manual.pdf │ ├── MetaData │ │ ├── LatestSQLVersion.txt │ │ └── SQL2008-SQL2017_AllLang.sum.xml │ ├── MsiPackage.cs │ ├── MspPackage.cs │ ├── OutputProcessor.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RegExtension.cs │ ├── RegHelper.cs │ ├── RegHive.cs │ ├── RegKey.cs │ ├── RegNode.cs │ ├── RegProperty.cs │ ├── SQLProduct.cs │ ├── SQLProductSum.cs │ ├── SQLRegViewer.csproj │ ├── SQLRegViewer.csproj.bak │ ├── SearchForm.Designer.cs │ ├── SearchForm.cs │ ├── SearchForm.resx │ ├── Utility.cs │ ├── app.manifest │ ├── folder.ico │ ├── packages.config │ ├── red.ico │ ├── regedit_100.ico │ ├── subForm.Designer.cs │ ├── subForm.cs │ └── subForm.resx ├── SQLRegistryViewer Manual.pdf ├── dot3ui_2002.ico ├── folder.ico ├── red.ico ├── red2.ico ├── regedit_100bb.ico ├── regedit_205.ico ├── regedit_206.ico ├── srchadmin_201.ico └── wmploc_602.ico └── SQLSetupTools.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/.gitignore -------------------------------------------------------------------------------- /FixMissingMSI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/App.config -------------------------------------------------------------------------------- /FixMissingMSI/FindSQLInstalls.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FindSQLInstalls.vbs -------------------------------------------------------------------------------- /FixMissingMSI/FindWhat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FindWhat.Designer.cs -------------------------------------------------------------------------------- /FixMissingMSI/FindWhat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FindWhat.cs -------------------------------------------------------------------------------- /FixMissingMSI/FindWhat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FindWhat.resx -------------------------------------------------------------------------------- /FixMissingMSI/FixMissingMSI Readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FixMissingMSI Readme.docx -------------------------------------------------------------------------------- /FixMissingMSI/FixMissingMSI Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FixMissingMSI Readme.pdf -------------------------------------------------------------------------------- /FixMissingMSI/FixMissingMSI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/FixMissingMSI.csproj -------------------------------------------------------------------------------- /FixMissingMSI/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Form1.Designer.cs -------------------------------------------------------------------------------- /FixMissingMSI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Form1.cs -------------------------------------------------------------------------------- /FixMissingMSI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Form1.resx -------------------------------------------------------------------------------- /FixMissingMSI/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Logger.cs -------------------------------------------------------------------------------- /FixMissingMSI/MSIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/MSIHelper.cs -------------------------------------------------------------------------------- /FixMissingMSI/MSIPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/MSIPackage.cs -------------------------------------------------------------------------------- /FixMissingMSI/Manual/FixMissingMSI Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Manual/FixMissingMSI Readme.pdf -------------------------------------------------------------------------------- /FixMissingMSI/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Output.cs -------------------------------------------------------------------------------- /FixMissingMSI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Program.cs -------------------------------------------------------------------------------- /FixMissingMSI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FixMissingMSI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FixMissingMSI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Properties/Resources.resx -------------------------------------------------------------------------------- /FixMissingMSI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FixMissingMSI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Properties/Settings.settings -------------------------------------------------------------------------------- /FixMissingMSI/PropertyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/PropertyComparer.cs -------------------------------------------------------------------------------- /FixMissingMSI/SQLProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/SQLProduct.cs -------------------------------------------------------------------------------- /FixMissingMSI/ScanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/ScanForm.Designer.cs -------------------------------------------------------------------------------- /FixMissingMSI/ScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/ScanForm.cs -------------------------------------------------------------------------------- /FixMissingMSI/ScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/ScanForm.resx -------------------------------------------------------------------------------- /FixMissingMSI/SortableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/SortableBindingList.cs -------------------------------------------------------------------------------- /FixMissingMSI/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/Utility.cs -------------------------------------------------------------------------------- /FixMissingMSI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/app.manifest -------------------------------------------------------------------------------- /FixMissingMSI/myData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/myData.cs -------------------------------------------------------------------------------- /FixMissingMSI/myFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/myFind.cs -------------------------------------------------------------------------------- /FixMissingMSI/myRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/myRow.cs -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Linq.dll -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Linq.xml -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Package.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Package.dll -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.Package.xml -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.dll -------------------------------------------------------------------------------- /FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/FixMissingMSI/wix/Microsoft.Deployment.WindowsInstaller.xml -------------------------------------------------------------------------------- /ProductBrowser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/App.config -------------------------------------------------------------------------------- /ProductBrowser/FindWhat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/FindWhat.Designer.cs -------------------------------------------------------------------------------- /ProductBrowser/FindWhat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/FindWhat.cs -------------------------------------------------------------------------------- /ProductBrowser/FindWhat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/FindWhat.resx -------------------------------------------------------------------------------- /ProductBrowser/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Form1.Designer.cs -------------------------------------------------------------------------------- /ProductBrowser/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Form1.cs -------------------------------------------------------------------------------- /ProductBrowser/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Form1.resx -------------------------------------------------------------------------------- /ProductBrowser/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Logger.cs -------------------------------------------------------------------------------- /ProductBrowser/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Product.cs -------------------------------------------------------------------------------- /ProductBrowser/ProductBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/ProductBrowser.csproj -------------------------------------------------------------------------------- /ProductBrowser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Program.cs -------------------------------------------------------------------------------- /ProductBrowser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductBrowser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ProductBrowser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Properties/Resources.resx -------------------------------------------------------------------------------- /ProductBrowser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ProductBrowser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Properties/Settings.settings -------------------------------------------------------------------------------- /ProductBrowser/Property.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/Property.ico -------------------------------------------------------------------------------- /ProductBrowser/ScanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/ScanForm.Designer.cs -------------------------------------------------------------------------------- /ProductBrowser/ScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/ScanForm.cs -------------------------------------------------------------------------------- /ProductBrowser/ScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/ScanForm.resx -------------------------------------------------------------------------------- /ProductBrowser/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/folder.ico -------------------------------------------------------------------------------- /ProductBrowser/imageres_111.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/imageres_111.ico -------------------------------------------------------------------------------- /ProductBrowser/myFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/myFind.cs -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Linq.dll -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Linq.xml -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Package.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Package.dll -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.Package.xml -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.dll -------------------------------------------------------------------------------- /ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/ProductBrowser/wix/Microsoft.Deployment.WindowsInstaller.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/README.md -------------------------------------------------------------------------------- /SQLRegViewer/Document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/Document.docx -------------------------------------------------------------------------------- /SQLRegViewer/SQLMsiMsp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLMsiMsp/App.config -------------------------------------------------------------------------------- /SQLRegViewer/SQLMsiMsp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLMsiMsp/Program.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLMsiMsp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLMsiMsp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLMsiMsp/SQLMsiMsp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLMsiMsp/SQLMsiMsp.csproj -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/AboutForm.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/AboutForm.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/AboutForm.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/COMClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/COMClass.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/FromMSI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/FromMSI.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/Installer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/KnownKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/KnownKeys.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/Services.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Analysis/Uninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Analysis/Uninstall.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/App.config -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/CleanupWarning.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/CleanupWarning.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/CleanupWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/CleanupWarning.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/CleanupWarning.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/CleanupWarning.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Controller.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Form1.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Form1.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Form1.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Logger.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/MSIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/MSIHelper.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Manual/SQLRegistryViewer Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Manual/SQLRegistryViewer Manual.pdf -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/MetaData/LatestSQLVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/MetaData/LatestSQLVersion.txt -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/MetaData/SQL2008-SQL2017_AllLang.sum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/MetaData/SQL2008-SQL2017_AllLang.sum.xml -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/MsiPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/MsiPackage.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/MspPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/MspPackage.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/OutputProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/OutputProcessor.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Program.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Properties/Resources.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Properties/Settings.settings -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegExtension.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegHelper.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegHive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegHive.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegKey.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegNode.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/RegProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/RegProperty.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SQLProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SQLProduct.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SQLProductSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SQLProductSum.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SQLRegViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SQLRegViewer.csproj -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SQLRegViewer.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SQLRegViewer.csproj.bak -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SearchForm.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SearchForm.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/SearchForm.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/Utility.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/app.manifest -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/folder.ico -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/packages.config -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/red.ico -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/regedit_100.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/regedit_100.ico -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/subForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/subForm.Designer.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/subForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/subForm.cs -------------------------------------------------------------------------------- /SQLRegViewer/SQLReg/subForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLReg/subForm.resx -------------------------------------------------------------------------------- /SQLRegViewer/SQLRegistryViewer Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/SQLRegistryViewer Manual.pdf -------------------------------------------------------------------------------- /SQLRegViewer/dot3ui_2002.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/dot3ui_2002.ico -------------------------------------------------------------------------------- /SQLRegViewer/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/folder.ico -------------------------------------------------------------------------------- /SQLRegViewer/red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/red.ico -------------------------------------------------------------------------------- /SQLRegViewer/red2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/red2.ico -------------------------------------------------------------------------------- /SQLRegViewer/regedit_100bb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/regedit_100bb.ico -------------------------------------------------------------------------------- /SQLRegViewer/regedit_205.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/regedit_205.ico -------------------------------------------------------------------------------- /SQLRegViewer/regedit_206.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/regedit_206.ico -------------------------------------------------------------------------------- /SQLRegViewer/srchadmin_201.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/srchadmin_201.ico -------------------------------------------------------------------------------- /SQLRegViewer/wmploc_602.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLRegViewer/wmploc_602.ico -------------------------------------------------------------------------------- /SQLSetupTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suyouquan/SQLSetupTools/HEAD/SQLSetupTools.sln --------------------------------------------------------------------------------