Hi im trying to run "ipconfig /all" in vb this is the code i have but the window closes down after it has completed the command is there away to keep the window active until the user wants to close it?
Dim Command As String
Command = "ipconfig /all"
Shell("cmd /c" & Command, 1, True)
Thanks
Bagleys