amateur
amateur

Reputation: 44635

perform httprequest in batch file

I have created a batch file (.cmd) to perform numerous tasks when installing a web application One of the tasks I want to perform is start the web application by performing a http request to the sites homepage. How can I do this? I would prefer not to have to use any external libraries or the like if possible.

Upvotes: 0

Views: 5110

Answers (1)

dogbane
dogbane

Reputation: 274738

You will need to use wget, which is a command-line utility that can be used to retrieve webpages.

Upvotes: 1

Related Questions