Dim pi As ProcessStartInfo pi = New ProcessStartInfo With pi .FileName = "rundll32.exe" .Arguments = "shell32.dll,Control_RunDLL inetcpl.cpl" End With Using p As Process = Process.Start(pi) p.WaitForExit() MsgBox("終了しました") End Using