How to use wget in PowerShell console with username and password

Question:

I have seen couple of answers on SO like this and this. But I always get some error similar to the following.

Not sure what am I doing wrong. I tried with the following variations, but all giving similar error. Please help.

Answer:

It looks like you actually want to run the program wget.exe, but PowerShell has a builtin alias wget for the cmdlet Invoke-WebRequest that takes precedence over an executable, even if the executable is in the PATH. That cmdlet doesn’t have parameters --user or --password, which is what causes the error you observed.

You can enforce running the executable by adding its extension, so PowerShell doesn’t confuse it with the alias:

Note that you should put string literals with special characters like $ in single quotes, otherwise PowerShell would expand something like "MyWhatEver@pas$w0rd" to "MyWhatEver@pas", because the variable $w0rd is undefined.

If you want to use the cmdlet Invoke-WebRequest rather than the wget executable you need to provide credentials via a PSCredential object:

Source:

How to use wget in PowerShell console with username and password by licensed under CC BY-SA | With most appropriate answer!

Leave a Reply