TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
GAC Installation at Runtime
Karthikeyan Anbarasan
Apr 02, 2011
2.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog shows on how to do a 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)
GAC Installation at Runtime
Next Recommended Reading
Runtime Type Identification in C#