Hi,
I am using following command line to get and save the IP Address information in Windows 10.
curl ipinfo.io >C:\Users\%Username%\myData\IPAddress.txt
In VB, I have tried Process.Start() but that seems to be not working I think due to ">" symbol as:
Used following approach as well but no luck as well:Code:Process.Start("curl ipinfo.io " & " " > " " & " C:\Users\%Username%\myData\IPAddress.txt")
Any thoughts?Code:Dim getIPinfo As New ProcessStartInfo("curl") getIPinfo.Arguments = "ipinfo.io > C:\Users\%Username%\myData\IPAddress.txt" Process.Start(getIPinfo)




