1. ホーム
  2. スクリプト・コラム
  3. DOS/BAT

ウェブページを開いたり閉じたりするためのcmdバッチコード

2022-02-10 22:32:16

ブラウザのインストールパスにスペースがある場合、以下のように " " で置き換えることができます。
C:\Program FilesMozilla Firefox ◇firefox.exe
C:\Program" "FilesMozilla" "Firefoxfirefox.exe と置き換えることができる。

1. Batch code for opening web pages with Internet Explorer: start c:\progra~1Intern~1xplore.exe URL

@echo off 
title Open web page 
start c:\progra~1\Intern~1\iexplore.exe "http://www.baidu.com" 

2. Google Chromeでページを開くための一括コード:インストールパスのURL

@echo off 
title Open web page 
start C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe 


http://www.google.com.hk


3. Firefoxでウェブページを開くためのバッチコード:インストールパスのURL

@echo off 
title Open web page 
start C:\Program" "Files\Mozilla" "Firefox\firefox.exe "http://www.163.com" 

4. ページを一括で開くためのコード(再現)。

@echo off 
mode con lines=16 
title Batch open page 
color 2f 
cls 
echo. 
echo Now it's %date% %time%echo 
echo ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 
start www.baidu.com 
start www.jb51.net 
echo The start is complete and is returning! 

5. ブラウザを閉じるためのバッチコードです。

@echo off 
title End the process 
taskkill /f /t /im iexplore.exe 
taskkill /f /t /im chrome.exe 
taskkill /f /t /im firefox.exe 

上記は、Webページを一括で開閉するためのcmdのバッチコードです、あなたはそれをよりテストすることができます