GAC Installation at Runtime

This blog shows on how to do a GAC Installation at Runtime

Public Sub GacInstall(ByVal AssemblyPath As String)
        Dim instance As System.EnterpriseServices.Internal.Publish
        instance = New System.EnterpriseServices.Internal.Publish
        instance.GacInstall(AssemblyPath)
    End Sub


strQuerystring = "Specify full path of dll"
            GacInstall(strQuerystring)
Next Recommended Reading Runtime Type Identification in C#