Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
COM+ Uninstalation at runtime
WhatsApp
Karthikeyan Anbarasan
13y
5.3
k
0
0
25
Blog
This blog shows on how to do a COM+ Uninstallation at runtime
Private Sub ExecuteCommandLine(ByVal strBatchName As String, ByVal strArguments As String)
Dim reader As
System
.IO.StreamReader
Using MyProcess As New Process()
With MyProcess.StartInfo
.FileName = "Cmd.exe"
.UseShellExecute = False
.CreateNoWindow = True
.Arguments = "/C " + strArguments
.RedirectStandardOutput = True
End With
MyProcess.Start()
MyProcess.WaitForExit(50000)
reader = MyProcess.StandardOutput
MyProcess.Dispose()
strResult &= strBatchName
strResult &= Environment.NewLine
Do Until reader.EndOfStream = True
strResult &= reader.ReadLine
strResult &= Environment.NewLine
Loop
strResult &= "-----------------------------------------------------------------------------------------------------------------------------------------"
strResult &= Environment.NewLine
reader.Dispose()
End Using
End Sub
strPathstring = "Specify the dll path here"
strPathstring = " C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\RegSvcs /u " + strPathstring.ToString
ExecuteCommandLine("COM+ UnInstallation", strPathstring)
COM+ Uninstalation at runtime
Up Next
COM+ Installation at runtime
Ebook Download
View all
Programming in Java
Read by 636 people
Download Now!
Learn
View all
Membership not found