วิธีที่เชื่อถือได้ในการเปิดกลุ่ม URL โดยใช้ Google Chrome บน Windows 10 จากบรรทัดคำสั่ง (แบทช์หรือ PowerShell)


0

ข้อมูลโค้ดของฉัน (เชลล์ Windows 10 cmd)

set s1="https://www.bbc.co.uk/radio4/programmes/schedules#on-now" 
set s2="https://www.bbc.co.uk/radio4extra/programmes/schedules#on-now" 
set s3="https://www.bbc.co.uk/iplayer/guide"
set s4="http://192.168.1.33:1935"
start  chrome --new-tab %s1% %s2% %s3% %s4% 

บางครั้งก็ใช้งานได้ ในบางครั้ง Chrome จะเปิดไซต์แรกและหยุดชั่วคราวหรือเปิดสองไซต์แรกไม่ใช่ส่วนที่เหลือ

ฉันต้องการวิธีที่เชื่อถือได้ในการทำเช่นนี้โดยใช้เฉพาะ Windows cmd หรือ PowerShell เท่านั้นโดยไม่มีส่วนขยายหรือเครื่องมือภายนอก

คำตอบ:


1

นี้ทำงานค่อนข้างดีสำหรับฉันใน powershell:

$sites = @()

$sites += "https://www.bbc.co.uk/radio4/programmes/schedules#on-now" 
$sites += "https://www.bbc.co.uk/radio4extra/programmes/schedules#on-now" 
$sites += "https://www.bbc.co.uk/iplayer/guide"
$sites += "http://192.168.1.33:1935"

foreach($site in $sites){
start-process chrome.exe $site
} 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.