电速宝智配引擎
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

read_doc.ps1 316B

12345678
  1. $word = New-Object -ComObject Word.Application
  2. $word.Visible = $false
  3. $docPath = "D:\ruoyiduo\duozuhu\wisdom-Energystoragecar-Intelligent\RuoYi-Vue-master\智配引擎数据库设计文档.docx"
  4. $doc = $word.Documents.Open($docPath)
  5. $content = $doc.Content.Text
  6. $doc.Close($false)
  7. $word.Quit()
  8. Write-Output $content