I would like to run a batch script that calls another batch script hosted on the internet. In bash, this can be done using something like this:
curl -s -L http://j.mp/script.sh | bash
How can I achieve this in windows batch. I have busybox and curl available but no powershell.
I looked around, but maybe I am using the wrong keywords as I cannot find what I am after.