Shell Result - extra text

If I execute this command

curl http://192.168.1.13:8060/query/apps

in the terminal I get

but if I execute it via a shell command

		Dim sh As New Shell
		Dim command As String
		Dim result As String
		sh.execute command
		result=sh.ReadAll
		MsgBox result

I get this instead… The top extra is “progress information”…
How can I stop it… I know I can parse it out, but I’d rather get “clean” data.

FYI… This is requesting data from a ROKU TV device connected to my entertainment system

curl -s http://192.168.1.13:8060/query/apps

add the -s argument :slight_smile: