回答:
ユーザー名を削除する(変更しない)には、このガイドに従ってください
On the Word menu, click Preferences.
Under Personal Settings, click Security.
Under Privacy options, select the Remove personal information from this file on save check box.
Save the document.
それ以外の場合、この質問には多くの手作業が必要になる答えがあります。Wordでレビュー担当者の名前を変更する方法は?
Word for Mac 2011はマクロをサポートしているため、すべてのドキュメントを1つのフォルダーに配置し、以下のコードを実行することにより、これを自動化できるはずです。
vDirectoryを、変更するドキュメントを含むフォルダーのパスに変更します。sAuthorName変数には、置換名が含まれている必要があります。必要な関数GetFilesOnMacWithOrWithoutSubfoldersは、オンラインでここにあります。
Disclamer:このマクロはMACでテストされていません
Sub ChangeAuthorInDocumentComments ()
Dim vDirectory As String
Dim sAuthorName As String
Dim oDoc As Document
vDirectory = "C:\Docs\"
sAuthorName = "Adam"
MyFiles = ""
Call GetFilesOnMacWithOrWithoutSubfolders(Level:=1, ExtChoice:=7, FileFilterOption:=3, FileNameFilterStr:=".doc")
Application.ScreenUpdating = False
If MyFiles <> "" Then
MySplit = Split(MyFiles, Chr(10))
For FileInMyFiles = LBound(MySplit) To UBound(MySplit) - 1
Set oDoc = Documents.Open(MySplit(FileInMyFiles))
For Each Ocom In ActiveDocument.Comments
With Ocom
Ocom.Author = sAuthorName
End With
Next
oDoc.Close SaveChanges:=True
Next FileInMyFiles
End If
Application.ScreenUpdating = True
End Sub