如何禁用使用 Word VBA 在 Word 文档中添加页面时弹出的潜在安全问题?

How to disable potential security concern pop up while adding a page in Word document using Word VBA?

我将 Word 文档 (docx) 添加到现有的 Word 文档中。

Sub InsertFile()
    Application.DisplayAlerts = False
    Selection.Collapse Direction:=wdCollapseEnd
    Selection.InsertFile FileName:="C:\Users\user\Downloads\Disclaimer.docx", Link:=True
End Sub

如何在 运行 宏时禁用此弹出窗口?

我试过了Application.DisplayAlerts = False

只需插入内容而不是使用

创建 link

Selection.InsertFile FileName:="C:\Users\user\Downloads\Disclaimer.docx", Link:=False

文件 -> 选项 -> 信任中心 -> 信任中心设置 -> 检查启用所有宏