Imports System.Environment
Imports System.Net
Public Class Tester
Public Shared Sub Main
Dim proc As New System.Diagnostics.Process()
Dim SystemDir As String = System.Environment.SystemDirectory
proc.Start("rundll32.exe", "shell32.dll,SHHelpShortcuts_RunDLL AddPrinter")
End Sub
End Class