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:
Code:
        Process.Start("curl ipinfo.io " & " " > " " & " C:\Users\%Username%\myData\IPAddress.txt")
Used following approach as well but no luck as well:
Code:
        Dim getIPinfo As New ProcessStartInfo("curl")
        getIPinfo.Arguments = "ipinfo.io > C:\Users\%Username%\myData\IPAddress.txt"
        Process.Start(getIPinfo)
Any thoughts?