I wanted more control, so started to switch from LoadWithPartialName to Add-Type. I used the following code on my workstation and attempted to load the SMO assembly and it worked just fine.
Add-Type -AssemblyName "Microsoft.SqlServer.SMO"
When I checked what version of the assembly that had loaded, I realized that it had chosen the 2005 version? I thought, great, this does the opposite of LoadWithPartialName and loads the oldest… So, I tried it on box that did not have the 2005 client installed. To my surprise, it failed with the following error:
Add-Type : Could not load file or assembly 'Microsoft.SqlServer.Smo, Version=9.0.242.0, Culture=neutral,
PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
A quick Bing search found an interesting Connect posting that offered some explanation. To quote “Microsoft” in the comment “The list is hard coded so that anybody writing “Add-Type –Assembly Microsoft.SqlServer.Smo” gets the same version.” In a similar vein, the documentation for Add-Type states that if “you enter a simple or partial name, Add-Type resolves it to the full name, and then uses the full name to load the assembly”. While this makes some sense, neither of these statements is clear exactly from what list this pulls from.
I spent some time with ProcessMonitor trying to determine if it was getting it from the registry or possibly from a different DLL with no luck. After spending some intimate time Bingling, trying to hit up methods and properties of the AddTypeCommand class, and otherwise coming up empty handed, I decided to take an alternate approach.
All the assemblies that I currently care to load for my work will be stored in one of the six folders of the GAC (Global Assembly Cache) on my Windows 7 Workstation. I decided to take this known list of assemblies and toss it to Add-Type and see what fell out.
The script below will take all of the assembly names that it can find and throw them at the Add-Type cmdlet. If the cmdlet loads the assembly, the current assembly list is examined to determine the full name of the assembly that was loaded.
If the cmdlet fails, the type of failure is recorded. If the assembly could not be loaded because the short name references an assembly that just doesn’t exist. Technically, Add-Type has that assembly in its list, so we can take the information out of the exception and know what the full assembly name was and store that value.
There are several assemblies that Add-Type does not seem to have a reference for. These will throw a custom error of ASSEMBLY_NOT_FOUND which means that the lookup failed. These assemblies are not in the list.
The full code is below. I understand, this is a very resource intensive approach, but there is little other choice that I could find that would tell me what versions the cmdlet would be loading for any given assembly. On my machine, it attempted to load 1073 assemblies (took a while). Of those, I was able to determine that 308 of them are in the Add-Type list. I’ve also included my list below. I do not believe this list to be comprehensive, but I do think it is safe to say that anything on this list reflects the accurate full name that Add-Type will resolve to if you provide a partial name.
About Kyle Neier
Husband of a magnificent woman, father of 5, SQL Server geek, IndyPASS Vice President and Food Guy, DBA automation zealot, amateur Powershell evangelist. Follow Me on Twitter
#Best to Start this in a powershell.exe -noprofile session $CSVLocation = "$Env:USERPROFILE\Add_Type_Lookup.csv" #Initialize Array to hold assemblies to attempt to load $AssemblyNames = @() $AssemblyReferences = @() #Get all assemblies currently in the _old_ GAC Get-ChildItem "C:\Windows\assembly\GAC" | Select -Unique Name | ForEach-Object{$AssemblyNames += $_.Name} #32/64 bit compatibles Get-ChildItem "C:\Windows\assembly\GAC_MSIL" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #Get any 32-bit specific assemblies not already loaded Get-ChildItem "C:\Windows\assembly\GAC_32" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #Get any 64-bit specific assemblies Get-ChildItem "C:\Windows\assembly\GAC_64" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #New GAC #Combined 32/64 Get-ChildItem "C:\Windows\Microsoft.NET\assembly\GAC_MSIL" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #32 only Get-ChildItem "C:\Windows\Microsoft.NET\assembly\GAC_32" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #64 only Get-ChildItem "C:\Windows\Microsoft.NET\assembly\GAC_64" | Select -Unique Name | ForEach-Object{if( $AssemblyNames -notcontains $_.Name){$AssemblyNames += $_.Name}} #Now that I have all the assembly names in my GAC, loop over each of them #and see how add-type reacts foreach($AssemblyName in $AssemblyNames) { #Create object to throw into array for further evaluation $AssemblyReference = "" | select Name, FullName #The name of the assembly is present, no need to gather that #from any of the code below $AssemblyReference.Name = $AssemblyName try { Add-Type -AssemblyName $AssemblyName -ErrorAction Stop #If there is no error, the assembly is in the hard-coded list within #Add-Type, so let's interrogate the current appdomain assembly list #to determine the actual full name that was loaded $AssemblyReference.FullName = ( [AppDomain]::CurrentDomain.GetAssemblies() | ?{$_.FullName -like "$AssemblyName,*"}).FullName } catch [System.IO.FileNotFoundException] { #If the name is in the Add-Type hard-coded list, it attempts to load it #If it can't be loaded, it throws a convenient FileNotFoundException #Fortunately, the "FileName" is the full name of the assembly #that was attempted to be loaded $AssemblyReference.FullName = $_.Exception.FileName } catch { if($_.FullyQualifiedErrorID -like "ASSEMBLY_NOT_FOUND*") { #Add-Type throws an error of ASSEMBLY_NOT_FOUND if the short name #is not in the list - so regardless of how hard we wish, we can't #load this assembly unless we use the full name $AssemblyReference.FullName = "Not In List" } else { #Some other error occured that is not expected #Log the fullname as unknown so that it can be evaluated later $AssemblyReference.FullName = "UNKNOWN" } } #Add the assembly object which has the short and full name to the array $AssemblyReferences += $AssemblyReference } #Send the array out to a CSV file and open it $AssemblyReferences | ?{("Not In List") -notcontains $_.FullName} | Sort-Object Name | Export-Csv -NoTypeInformation -Path $CSVLocation Invoke-Item $CSVLocationAdd-Type Assembly Reference List from my Windows 7 64-bit workstation:
Name | FullName |
Accessibility | Accessibility, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
ADODB | ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
AspNetMMCExt | AspNetMMCExt, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
CppCodeProvider | CppCodeProvider, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
cscompmgd | cscompmgd, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
CustomMarshalers | CustomMarshalers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
EnvDTE | EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
EnvDTE80 | EnvDTE80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
EnvDTE90 | EnvDTE90, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
EventViewer | EventViewer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
EventViewer.Resources | EventViewer.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Extensibility | Extensibility, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
IEExecRemote | IEExecRemote, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
IEHost | IEHost, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
IIEHost | IIEHost, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
ipdmctrl | ipdmctrl, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
ISymWrapper | ISymWrapper, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
MFCMIFC80 | MFCMIFC80, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.AnalysisServices | Microsoft.AnalysisServices, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.AnalysisServices.AdomdClient | Microsoft.AnalysisServices.AdomdClient, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.AnalysisServices.DeploymentEngine | Microsoft.AnalysisServices.DeploymentEngine, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.Build.Conversion.v3.5 | Microsoft.Build.Conversion.v3.5, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Engine | Microsoft.Build.Engine, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Framework | Microsoft.Build.Framework, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Tasks | Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Tasks.v3.5 | Microsoft.Build.Tasks.v3.5, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Utilities | Microsoft.Build.Utilities, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Build.Utilities.v3.5 | Microsoft.Build.Utilities.v3.5, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.DataWarehouse.Interfaces | Microsoft.DataWarehouse.Interfaces, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.ExceptionMessageBox | Microsoft.ExceptionMessageBox, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.GroupPolicy.Interop | Microsoft.GroupPolicy.Interop, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.GroupPolicy.Reporting | Microsoft.GroupPolicy.Reporting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.GroupPolicy.Reporting.Resources | Microsoft.GroupPolicy.Reporting.resources, Version=2.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.Ink | Microsoft.Ink, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.Ink.Resources | Microsoft.Ink.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.Internal.VisualStudio.Shell.Interop.9.0 | Microsoft.Internal.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Interop.Security.AzRoles | Microsoft.Interop.Security.AzRoles, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.JScript | Microsoft.JScript, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ManagementConsole | Microsoft.ManagementConsole, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.ManagementConsole.Resources | Microsoft.ManagementConsole.resources, Version=3.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.mshtml | Microsoft.mshtml, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.MSXML | Microsoft.MSXML, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.NetEnterpriseServers.ExceptionMessageBox | Microsoft.NetEnterpriseServers.ExceptionMessageBox, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.Office.InfoPath | Microsoft.Office.InfoPath, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.InfoPath.Client.Internal.Host | Microsoft.Office.InfoPath.Client.Internal.Host, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.InfoPath.Client.Internal.Host.Interop | Microsoft.Office.InfoPath.Client.Internal.Host.Interop, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.InfoPath.FormControl | Microsoft.Office.InfoPath.FormControl, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.InfoPath.Permission | Microsoft.Office.InfoPath.Permission, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.InfoPath.Vsta | Microsoft.Office.InfoPath.Vsta, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Access | Microsoft.Office.Interop.Access, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Access.Dao | Microsoft.Office.Interop.Access.Dao, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Excel | Microsoft.Office.Interop.Excel, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Graph | Microsoft.Office.Interop.Graph, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.InfoPath | Microsoft.Office.Interop.InfoPath, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.InfoPath.SemiTrust | Microsoft.Office.Interop.InfoPath.SemiTrust, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.InfoPath.Xml | Microsoft.Office.Interop.InfoPath.Xml, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.OneNote | Microsoft.Office.Interop.OneNote, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Outlook | Microsoft.Office.Interop.Outlook, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.OutlookViewCtl | Microsoft.Office.Interop.OutlookViewCtl, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.PowerPoint | Microsoft.Office.Interop.PowerPoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Publisher | Microsoft.Office.Interop.Publisher, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.SmartTag | Microsoft.Office.Interop.SmartTag, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Interop.Word | Microsoft.Office.Interop.Word, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Office.Tools.Common | Microsoft.Office.Tools.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Office.Tools.Excel | Microsoft.Office.Tools.Excel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Office.Tools.Outlook | Microsoft.Office.Tools.Outlook, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Office.Tools.Word | Microsoft.Office.Tools.Word, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.PowerShell.Commands.Diagnostics | Microsoft.PowerShell.Commands.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Commands.Management | Microsoft.PowerShell.Commands.Management, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Commands.Management.Resources | Microsoft.PowerShell.Commands.Management.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Commands.Utility | Microsoft.PowerShell.Commands.Utility, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Commands.Utility.Resources | Microsoft.PowerShell.Commands.Utility.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.ConsoleHost | Microsoft.PowerShell.ConsoleHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.ConsoleHost.Resources | Microsoft.PowerShell.ConsoleHost.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Editor | Microsoft.PowerShell.Editor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Editor.Resources | Microsoft.PowerShell.Editor.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.GPowerShell | Microsoft.PowerShell.GPowerShell, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.GPowerShell.Resources | Microsoft.PowerShell.GPowerShell.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.GraphicalHost | Microsoft.PowerShell.GraphicalHost, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.GraphicalHost.Resources | Microsoft.PowerShell.GraphicalHost.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Security | Microsoft.PowerShell.Security, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.PowerShell.Security.Resources | Microsoft.PowerShell.Security.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.ReportViewer.Common | Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ReportViewer.Design | Microsoft.ReportViewer.Design, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ReportViewer.ProcessingObjectModel | Microsoft.ReportViewer.ProcessingObjectModel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ReportViewer.WebDesign | Microsoft.ReportViewer.WebDesign, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ReportViewer.WebForms | Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.ReportViewer.WinForms | Microsoft.ReportViewer.WinForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.SqlServer.BatchParser | Microsoft.SqlServer.BatchParser, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.ConnectionInfo | Microsoft.SqlServer.ConnectionInfo, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.CustomControls | Microsoft.SqlServer.CustomControls, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.GridControl | Microsoft.SqlServer.GridControl, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.Instapi | Microsoft.SqlServer.Instapi, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.MgdSqlDumper | Microsoft.SqlServer.MgdSqlDumper, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.RegSvrEnum | Microsoft.SqlServer.RegSvrEnum, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.Replication | Microsoft.SqlServer.Replication, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.Replication.BusinessLogicSupport | Microsoft.SqlServer.Replication.BusinessLogicSupport, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.Rmo | Microsoft.SqlServer.Rmo, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.ServiceBrokerEnum | Microsoft.SqlServer.ServiceBrokerEnum, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.Smo | Microsoft.SqlServer.Smo, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.SmoEnum | Microsoft.SqlServer.SmoEnum, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.SqlEnum | Microsoft.SqlServer.SqlEnum, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.SqlTDiagM | Microsoft.SqlServer.SqlTDiagM, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.SString | Microsoft.SqlServer.SString, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.WizardFrameworkLite | Microsoft.SqlServer.WizardFrameworkLite, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.SqlServer.WmiEnum | Microsoft.SqlServer.WmiEnum, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
Microsoft.StdFormat | Microsoft.StdFormat, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Tpm | Microsoft.Tpm, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft.Tpm.Resources | Microsoft.Tpm.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
Microsoft.Transactions.Bridge | Microsoft.Transactions.Bridge, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Transactions.Bridge.Dtc | Microsoft.Transactions.Bridge.Dtc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Vbe.Interop | Microsoft.Vbe.Interop, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.Vbe.Interop.Forms | Microsoft.Vbe.Interop.Forms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Microsoft.VisualBasic | Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualBasic.Compatibility | Microsoft.VisualBasic.Compatibility, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualBasic.Compatibility.Data | Microsoft.VisualBasic.Compatibility.Data, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualBasic.Vsa | Microsoft.VisualBasic.Vsa, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualC | Microsoft.VisualC, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualC.STLCLR | Microsoft.VisualC.STLCLR, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualC.VSCodeParser | Microsoft.VisualC.VSCodeParser, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualC.VSCodeProvider | Microsoft.VisualC.VSCodeProvider, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio | Microsoft.VisualStudio, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.CommandBars | Microsoft.VisualStudio.CommandBars, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.CommonIDE | Microsoft.VisualStudio.CommonIDE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Configuration | Microsoft.VisualStudio.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Debugger.Interop | Microsoft.VisualStudio.Debugger.Interop, Version=8.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Debugger.InteropA | Microsoft.VisualStudio.Debugger.InteropA, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.DebuggerVisualizers | Microsoft.VisualStudio.DebuggerVisualizers, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Design | Microsoft.VisualStudio.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Designer.Interfaces | Microsoft.VisualStudio.Designer.Interfaces, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Diagnostics.ServiceModelSink | Microsoft.VisualStudio.Diagnostics.ServiceModelSink, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Editors | Microsoft.VisualStudio.Editors, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.EnterpriseTools | Microsoft.VisualStudio.EnterpriseTools, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.EnterpriseTools.ClassDesigner | Microsoft.VisualStudio.EnterpriseTools.ClassDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.EnterpriseTools.Shell | Microsoft.VisualStudio.EnterpriseTools.Shell, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.EnterpriseTools.TypeSystem | Microsoft.VisualStudio.EnterpriseTools.TypeSystem, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.HostingProcess.Utilities | Microsoft.VisualStudio.HostingProcess.Utilities, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.HostingProcess.Utilities.Sync | Microsoft.VisualStudio.HostingProcess.Utilities.Sync, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.ManagedInterfaces | Microsoft.VisualStudio.ManagedInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Modeling | Microsoft.VisualStudio.Modeling, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Modeling.ArtifactMapper | Microsoft.VisualStudio.Modeling.ArtifactMapper, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Modeling.ArtifactMapper.VSHost | Microsoft.VisualStudio.Modeling.ArtifactMapper.VSHost, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Modeling.Diagrams | Microsoft.VisualStudio.Modeling.Diagrams, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Modeling.Diagrams.GraphObject | Microsoft.VisualStudio.Modeling.Diagrams.GraphObject, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.OLE.Interop | Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Package.LanguageService | Microsoft.VisualStudio.Package.LanguageService, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.ProjectAggregator | Microsoft.VisualStudio.ProjectAggregator, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Publish | Microsoft.VisualStudio.Publish, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.QualityTools.Resource | Microsoft.VisualStudio.QualityTools.Resource, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.QualityTools.UnitTestFramework | Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell | Microsoft.VisualStudio.Shell, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell.9.0 | Microsoft.VisualStudio.Shell.9.0, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell.Design | Microsoft.VisualStudio.Shell.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell.Interop | Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell.Interop.8.0 | Microsoft.VisualStudio.Shell.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Shell.Interop.9.0 | Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.TeamSystem.PerformanceWizard | Microsoft.VisualStudio.TeamSystem.PerformanceWizard, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.TemplateWizardInterface | Microsoft.VisualStudio.TemplateWizardInterface, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.TextManager.Interop | Microsoft.VisualStudio.TextManager.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.TextManager.Interop.8.0 | Microsoft.VisualStudio.TextManager.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.TextManager.Interop.9.0 | Microsoft.VisualStudio.TextManager.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Adapter | Microsoft.VisualStudio.Tools.Applications.Adapter, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Adapter.v9.0 | Microsoft.VisualStudio.Tools.Applications.Adapter.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.AddInManager | Microsoft.VisualStudio.Tools.Applications.AddInManager, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Blueprints | Microsoft.VisualStudio.Tools.Applications.Blueprints, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.ComRPCChannel | Microsoft.VisualStudio.Tools.Applications.ComRPCChannel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Contract | Microsoft.VisualStudio.Tools.Applications.Contract, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Contract.v9.0 | Microsoft.VisualStudio.Tools.Applications.Contract.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.DesignTime | Microsoft.VisualStudio.Tools.Applications.DesignTime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Hosting | Microsoft.VisualStudio.Tools.Applications.Hosting, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Hosting.v9.0 | Microsoft.VisualStudio.Tools.Applications.Hosting.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.InteropAdapter | Microsoft.VisualStudio.Tools.Applications.InteropAdapter, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.Runtime | Microsoft.VisualStudio.Tools.Applications.Runtime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Applications.ServerDocument | Microsoft.VisualStudio.Tools.Applications.ServerDocument, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Tools.Office.Runtime | Microsoft.VisualStudio.Tools.Office.Runtime, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VCCodeModel | Microsoft.VisualStudio.VCCodeModel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VCProject | Microsoft.VisualStudio.VCProject, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VCProjectEngine | Microsoft.VisualStudio.VCProjectEngine, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VirtualTreeGrid | Microsoft.VisualStudio.VirtualTreeGrid, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VSContentInstaller | Microsoft.VisualStudio.VSContentInstaller, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VSHelp | Microsoft.VisualStudio.VSHelp, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.VSHelp80 | Microsoft.VisualStudio.VSHelp80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Windows.Forms | Microsoft.VisualStudio.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.WizardFramework | Microsoft.VisualStudio.WizardFramework, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VisualStudio.Zip | Microsoft.VisualStudio.Zip, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Vsa | Microsoft.Vsa, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.Vsa.Vb.CodeDOMProcessor | Microsoft.Vsa.Vb.CodeDOMProcessor, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.VSDesigner | Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
Microsoft.WSMan.Management | Microsoft.WSMan.Management, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Microsoft_VsaVb | Microsoft_VsaVb, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
MiguiControls | MIGUIControls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
MiguiControls.Resources | MIGUIControls.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
MMCEx | MMCEx, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
MMCEx.Resources | MMCEx.resources, Version=3.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
MMCFxCommon | MMCFxCommon, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
MMCFxCommon.Resources | MMCFxCommon.resources, Version=3.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
MSClusterLib | MSClusterLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 |
mscomctl | mscomctl, Version=10.0.4504.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
mscorcfg | mscorcfg, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
mscorlib | mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
MSDATASRC | MSDATASRC, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
msddslmp | msddslmp, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
msddsp | msddsp, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
napcrypt | napcrypt, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
naphlpr | naphlpr, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
napinit | napinit, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
napinit.resources | napinit.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
napsnap | napsnap, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
napsnap.resources | napsnap.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
office | office, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.1.0.Microsoft.Ink | Policy.1.0.Microsoft.Ink, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Policy.1.0.Microsoft.Interop.Security.AzRoles | Policy.1.0.Microsoft.Interop.Security.AzRoles, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Policy.1.2.Microsoft.Interop.Security.AzRoles | Policy.1.2.Microsoft.Interop.Security.AzRoles, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Policy.1.7.Microsoft.Ink | Policy.1.7.Microsoft.Ink, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
Policy.11.0.Microsoft.Office.Interop.Access | Policy.11.0.Microsoft.Office.Interop.Access, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.Excel | Policy.11.0.Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.Graph | Policy.11.0.Microsoft.Office.Interop.Graph, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.InfoPath | Policy.11.0.Microsoft.Office.Interop.InfoPath, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.InfoPath.Xml | Policy.11.0.Microsoft.Office.Interop.InfoPath.Xml, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.Outlook | Policy.11.0.Microsoft.Office.Interop.Outlook, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.OutlookViewCtl | Policy.11.0.Microsoft.Office.Interop.OutlookViewCtl, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.PowerPoint | Policy.11.0.Microsoft.Office.Interop.PowerPoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.Publisher | Policy.11.0.Microsoft.Office.Interop.Publisher, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.SmartTag | Policy.11.0.Microsoft.Office.Interop.SmartTag, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Office.Interop.Word | Policy.11.0.Microsoft.Office.Interop.Word, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.Microsoft.Vbe.Interop | Policy.11.0.Microsoft.Vbe.Interop, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
Policy.11.0.office | Policy.11.0.office, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c |
PresentationBuildTasks | PresentationBuildTasks, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationCFFRasterizer | PresentationCFFRasterizer, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationCore | PresentationCore, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationFramework | PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationFramework.Aero | PresentationFramework.Aero, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationFramework.Classic | PresentationFramework.Classic, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationFramework.Luna | PresentationFramework.Luna, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationFramework.Royale | PresentationFramework.Royale, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
PresentationUI | PresentationUI, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
ReachFramework | ReachFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
SMDiagnostics | SMDiagnostics, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
soapsudscode | soapsudscode, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
stdole | stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
sysglobl | sysglobl, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System | System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.AddIn | System.AddIn, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.AddIn.Contract | System.AddIn.Contract, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Configuration | System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Configuration.Install | System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Core | System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Data | System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Data.DataSetExtensions | System.Data.DataSetExtensions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Data.Linq | System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Data.OracleClient | System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Data.SqlXml | System.Data.SqlXml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Deployment | System.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Design | System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.DirectoryServices | System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.DirectoryServices.AccountManagement | System.DirectoryServices.AccountManagement, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.DirectoryServices.Protocols | System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Drawing | System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Drawing.Design | System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.EnterpriseServices | System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.IdentityModel | System.IdentityModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.IdentityModel.Selectors | System.IdentityModel.Selectors, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.IO.Log | System.IO.Log, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Management | System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Management.Automation | System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Management.Automation.Resources | System.Management.Automation.resources, Version=1.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
System.Management.Instrumentation | System.Management.Instrumentation, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Messaging | System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Net | System.Net, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Printing | System.Printing, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Runtime.Remoting | System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Runtime.Serialization | System.Runtime.Serialization, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Runtime.Serialization.Formatters.Soap | System.Runtime.Serialization.Formatters.Soap, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Security | System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.ServiceModel | System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.ServiceModel.Install | System.ServiceModel.Install, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.ServiceModel.WasHosting | System.ServiceModel.WasHosting, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.ServiceModel.Web | System.ServiceModel.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.ServiceProcess | System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Speech | System.Speech, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Transactions | System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Web | System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Web.Extensions | System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Web.Extensions.Design | System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Web.Mobile | System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Web.RegularExpressions | System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Web.Services | System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
System.Windows.Forms | System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Windows.Presentation | System.Windows.Presentation, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Workflow.Activities | System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Workflow.ComponentModel | System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Workflow.Runtime | System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.WorkflowServices | System.WorkflowServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
System.Xml | System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
System.Xml.Linq | System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
TaskScheduler | TaskScheduler, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
TaskScheduler.Resources | TaskScheduler.resources, Version=6.0.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35 |
UIAutomationClient | UIAutomationClient, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
UIAutomationClientsideProviders | UIAutomationClientsideProviders, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
UIAutomationProvider | UIAutomationProvider, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
UIAutomationTypes | UIAutomationTypes, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
VSLangProj | VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
VSLangProj2 | VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
VSLangProj80 | UNKNOWN |
VsWebSite.Interop | VsWebSite.Interop, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
WebDev.WebHost | WebDev.WebHost, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a |
WindowsBase | WindowsBase, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
WindowsFormsIntegration | WindowsFormsIntegration, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 |
4 comments:
Very nice.
Great post. It really helped my today (http://sqladm.blogspot.dk/2014/04/add-amo-without-sqlps.html).
Thanks!!!
Really nice and definitely it will be useful for many people. Kindly keep update like this.
SEO Company in India
Digital Marketing Company in India
Post a Comment