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.
相关问题
- POST Base64 encoded data in PHP
- xcopy include folder
- Batch file if string starts by
- Jenkins - cmd is not recognized
- Does specifying the encoding in javac yield the sa
相关文章
- 在vscode如何用code runner打开独立的控制台窗口,以及设置好调试模式时窗口的编码?
- Compile and build with single command line Java (L
- Extracting columns from text file using Perl one-l
- How to update command line output?
- How to execute another python script from your scr
- How can one batch file get the exit code of anothe
- Command line escaping single quote for PowerShell
- How to make jenkins fail at a failing windows batc
You will need to use
wget
, which is a command-line utility that can be used to retrieve webpages.