电速宝智配引擎
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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