Link to home
Start Free TrialLog in
Avatar of JasonLattin
JasonLattin

asked on

use Powershell to install an MSI located on a web site with a username pwd

I have an MSI located on a web site that is secured with a basic username/pwd.

I need to use powershell to install it on a local server.
What syntax do I need to use for that?

here is what I have tried:
A) msiexec /i "https://Mysite.myserver.com/Myinstall.msi"
B) start-process -filepath msiexec.exe -argumentlist "/i https://Mysite.myserver.com/Myinstall.msi"

Each time I run these it tells me it can't locate the MSI. I suspect it is because of the username/pwd on the web site.

Ideas?
ASKER CERTIFIED SOLUTION
Avatar of Raheman M. Abdul
Raheman M. Abdul
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JasonLattin
JasonLattin

ASKER

@Raheman
Your script works fine if the file is on a regular http site but it fails on an https site. My site is secured with a certificate, requiring https.

Ideas?
@Raheman
Further testing shows that it isnt the certificate / https that is breaking the script. It seems to be my username/pwd on that site. If I open the site to not require a username/pwd then your script works like a charm.
Just need to figure out how to address the username/pwd issue for the site.
For that the page source is required then we can parse and use the login details to enter to the site. otherwise we can use sendkeys()
is that externall site or internal site?
@Raheman
The MSI is on an external web site. it never prompts for login so i'm not sure how sendkeys() will work but i am sure you have other thoughts.
This works like a charm. Does not work for HTTPS sites but for regular sites it works fine.