回复 1# zhuan1688
我用PS代码试的, 把下面代码存成ANSI编码的bat文件后双击执行- #&cls&@powershell -c "Get-Content '%~0' | Out-String | Invoke-Expression" &pause&exit
- $file = "$HOME\Desktop\test.txt" #桌面上放好test.txt文档
- $n = 2 #设置每次打开的IE的数量
- $t = 10 #设置多少秒后关闭IE
- $i = 1
- foreach ($url in gc $file)
- {
-
- start "iexplore" $url
- if ($i -eq $n)
- {
- sleep $t
- gps 'iexplore' | kill
- $i = 1
- }
- else
- {
- $i++
- }
-
- }
复制代码
|