I wanted to download a scoop installer and I find out that my command is not working in a .bat file but works when I copy/paste it into PowerShell.
Here is the command and a picture to make things perfectly clear:
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
The output of PowerShell:
Why is it the case and maybe the things that we need to be aware of when we put commands in .bat file?
