[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
  1. <#*,:&cls
  2. @echo off
  3. cd /d "%~dp0"
  4. powershell -NoProfile -ExecutionPolicy RemoteSigned -Command ". ([ScriptBlock]::Create((Get-Content -LiteralPath \"%~0\" -ReadCount 0 | Out-String ))) "
  5. pause
  6. exit /b
  7. #>
  8. # 功能:百度学术记录关键词搜索结果的数量.
  9. # 关键词文件
  10. $srcfile = "words.txt"
  11. # 结果文件
  12. $outfile = "words_out.txt"
  13. # 百度学术
  14. $urlbase = "https://xueshu.baidu.com/s?wd={0}"
  15. $renums = [regex]"找到约(.*)条相关结果"
  16. try {
  17.   $proc = Start-Process -FilePath "iexplore.exe" -ArgumentList "-embedding" -PassThru
  18.   [void]$proc.WaitForInputIdle()
  19. } catch {
  20.   $_ | Write-Host -ForegroundColor Red
  21. } finally {
  22.   $proc.Dispose()
  23. }
  24. $shellApp = New-Object -ComObject Shell.Application
  25. while ($true) {
  26.   $ie = $shellApp.Windows() | Where-Object { $_.FullName -like "*\Internet Explorer\iexplore.exe" -and [string]::IsNullOrEmpty($_.LocationURL) }
  27.   if ($null -ne $ie) {
  28.     break
  29.   }
  30.   Start-Sleep -Milliseconds 200
  31. }
  32. Get-Content -Path $srcfile | ForEach-Object {
  33.   try {
  34.     Write-Host $_ -ForegroundColor Yellow
  35.     $uri = New-Object System.Uri -ArgumentList @(($urlbase -f $_))
  36.     $ie.Navigate($uri.AbsoluteUri)
  37.     while ($ie.Busy) {
  38.       Start-Sleep -Milliseconds 100
  39.     }
  40.     $pso = '' | Select-Object -Property Keyword, ResultCount
  41.     $pso.Keyword = $_
  42.     $node_toolbar = $ie.document.getElementById("toolbar")
  43.     $m = $renums.Match($node_toolbar.innerText)
  44.     if ($m.Success) {
  45.       $pso.ResultCount = [long]$m.Groups[1].Value
  46.     }
  47.     $pso
  48.   } catch {
  49.    
  50.   }
  51. } | Format-Table -AutoSize | Out-File -FilePath $outfile -Encoding utf8
  52. $ie.Quit()
复制代码
微信:flashercs
QQ:49908356

TOP

回复 3# zzz1230


    批处理一定要保存为ANSI编码; 我签名有联系方式 qq或wx;
微信:flashercs
QQ:49908356

TOP

返回列表