作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我当前的PowerShell脚本:
$document = "C:\\test.doc"
$word = new-object -comobject word.application
$word.Visible = $false
$word.DisplayAlerts = "wdAlertsNone"
$word.AutomationSecurity = "msoAutomationSecurityForceDisable"
$doc = $word.Documents.Open($document)
$word.ActivePrinter = "\\http://ptr-server:631\pdf-printer"
$background = $false
$doc.PrintOut([ref]$background)
$doc.close([ref]$false)
$word.quit()
AutoOpen
宏或不显示任何对话框提示的情况下打开文档?
最佳答案
事实证明,在VB.NET中比在C#中做起来要容易得多(我从没想过)。但是,您所需要做的就是创建一个具有单个例程的控制台应用程序。以下是说明:
代码
Imports word = Microsoft.Office.Interop.Word
Module Module1
Sub Main()
Dim args() As String = Environment.GetCommandLineArgs
Dim path = args(1)
Dim printer = args(2)
Dim wordApp As word.Application = New word.Application
wordApp.WordBasic.DisableAutoMacros(1)
wordApp.Visible = False
Dim doc As word.Document = wordApp.Documents.Open(path)
wordApp.ActivePrinter = printer
Dim background As Object = False
doc.PrintOut(background)
doc.Close(False)
wordApp.WordBasic.DisableAutoMacros(0)
wordApp.Quit()
End Sub
End Module
重新创建解决方案的步骤:
Module1
中的任何代码,然后插入上面的代码。 $wordprinterpath
。
$doc
和$printer
。 关于powershell - 如何使用PowerShell打开包含AutoOpen宏的文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2846407/
有没有办法自动打开外部定义的模块?我希望它在整个项目中都可用,而无需在每个文件中打开它。像这样的东西是理想的: [] module MyModule = YourNamespace.YourModul
这篇文章包含两个相互关联的问题,它们具有清理资源的共同点。我读过这个 SO post ,以及 Microsoft 网站上的其他几个人试图确定什么是托管资源与非托管资源。根据我阅读的内容,以下代码块使用
使用 AutoOpen 属性的推荐原则是什么? (这个问题可能是 when to use module function VS static function on similarly named t
$(function() { $( "#dialogwindow" ).dialog({ height: 140, width: 400, z
上下文 目前我正在开发一个 Word 加载项,它使用新的 Javascript API for Office。该加载项由一些基本功能和一些数字模板组成。打开文档时,模板(普通文档)会自动打开一个任务
我是一名优秀的程序员,十分优秀!