forked from TAo4ma/PS_Script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Change_Properties_Word_v1.ps1
356 lines (312 loc) · 15.3 KB
/
Change_Properties_Word_v1.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
# INIファイルのパス
$scriptPath = $MyInvocation.MyCommand.Path
Set-Location -Path ([System.IO.Path]::GetDirectoryName($scriptPath))
$iniFilePath = [System.IO.Path]::Combine([System.IO.Path]::GetDirectoryName($scriptPath), "config_Change_Properties_Word.ini")
# INIファイルから設定を読み込む関数
function Get-IniContent {
param (
[string]$iniFilePath
)
$iniContent = @{}
Write-Host "INIファイルの存在を確認中: $iniFilePath"
if (Test-Path $iniFilePath) {
Write-Host "INIファイルが見つかりました。内容を読み込んでいます..."
$lines = Get-Content $iniFilePath
foreach ($line in $lines) {
if ($line -match "^\s*#") {
Write-Host "コメント行を読み飛ばしています: $line"
continue
}
if ($line -match "^\s*$") {
Write-Host "空行を読み飛ばしています。"
continue
}
if ($line -match "^\s*`"([^\`"]+?)`"\s*,\s*`"([^\`"]+?)`"\s*$") {
$key = $matches[1].Trim()
$value = $matches[2].Trim()
Write-Host "読み込み中: $key = $value"
$iniContent[$key] = $value
} else {
Write-Host "行が正しい形式ではありません: $line"
}
}
Write-Host "INIファイルの内容を読み込みました。"
} else {
Write-Host "INIファイルが見つかりませんでした。"
}
return $iniContent
}
# INIファイルの内容を取得
Write-Host "INIファイルの内容を取得中..."
$iniContent = Get-IniContent -iniFilePath $iniFilePath
Write-Host "INIファイルの内容を取得しました。"
# クラス定義
class WordDocumentProcessor {
[string]$FilePath
[string]$Approver
[bool]$ApprovalFlag
[string]$ImagePath
[string]$IniFilePath
WordDocumentProcessor([string]$filePath, [string]$approver, [bool]$approvalFlag, [string]$imagePath, [string]$iniFilePath) {
Write-Host "WordDocumentProcessorのコンストラクタを実行中..."
$this.FilePath = $filePath
$this.Approver = $approver
$this.ApprovalFlag = $approvalFlag
$this.ImagePath = $imagePath
$this.IniFilePath = $iniFilePath
Write-Host "WordDocumentProcessorのコンストラクタが完了しました。"
}
[void] ImportInteropAssembly() {
$assemblyName = "Microsoft.Office.Interop.Word"
Write-Host "ImportInteropAssemblyメソッドを実行中..."
# INIファイルからアセンブリパスを読み込む
if (Test-Path $this.IniFilePath) {
$iniContent = Get-IniContent -iniFilePath $this.IniFilePath
$assemblyPath = $iniContent[$assemblyName]
} else {
$assemblyPath = $null
}
switch ($true) {
($assemblyPath -and (Test-Path $assemblyPath)) {
Write-Host "$assemblyName is found in INI file. Using the existing assembly."
Add-Type -Path $assemblyPath
}
($null -eq $assemblyPath -or -not (Test-Path $assemblyPath)) {
Write-Host "$assemblyName is not found in INI file or path does not exist. Searching in Windows directory..."
# Windowsディレクトリ下をサーチ
$assemblyPath = Get-ChildItem -Path "C:\Windows\assembly\GAC_MSIL" -Recurse -Filter "Microsoft.Office.Interop.Word.dll" | Select-Object -First 1 -ExpandProperty FullName
if ($assemblyPath) {
Write-Host "$assemblyName is found in Windows directory. Using the existing assembly."
Set-Content -Path $this.IniFilePath -Value "$assemblyName=$assemblyPath"
Add-Type -Path $assemblyPath
} else {
Write-Host "$assemblyName is not found in Windows directory. Installing from NuGet..."
# NuGetプロバイダーのインストール
if (-not (Get-PackageProvider -Name NuGet -ErrorAction SilentlyContinue)) {
Install-PackageProvider -Name NuGet -Force -Scope CurrentUser
Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted
}
# Microsoft.Office.Interop.Wordのインストール
Install-Package -Name "Microsoft.Office.Interop.Word" -Source "PSGallery" -Scope CurrentUser -Force
$assemblyPath = (Get-Package -Name "Microsoft.Office.Interop.Word" -Source "PSGallery").Source
Set-Content -Path $this.IniFilePath -Value "$assemblyName=$assemblyPath"
Add-Type -Path $assemblyPath
}
}
}
Write-Host "ImportInteropAssemblyメソッドが完了しました。"
}
[void] ProcessDocument() {
Write-Host "ProcessDocumentメソッドを実行中..."
$this.ImportInteropAssembly()
# スクリプト実行前に存在していたWordプロセスを取得
$existingWordProcesses = Get-Process -Name WINWORD -ErrorAction SilentlyContinue
# Wordアプリケーションを起動
Write-Host "Wordアプリケーションを起動中..."
$word = New-Object -ComObject Word.Application
$word.Visible = $true
try {
# ドキュメントを開く
Write-Host "ドキュメントを開いています: $($this.FilePath)"
$doc = $word.Documents.Open($this.FilePath)
# 文書プロパティを読み取って表示する関数
function Get-DocumentProperties {
param (
[object]$doc
)
$properties = @{
DocumentTheme = $doc.DocumentTheme
HasVBProject = $doc.HasVBProject
OMathFontName = $doc.OMathFontName
EncryptionProvider = $doc.EncryptionProvider
UseMathDefaults = $doc.UseMathDefaults
CurrentRsid = $doc.CurrentRsid
DocID = $doc.DocID
CompatibilityMode = $doc.CompatibilityMode
CoAuthoring = $doc.CoAuthoring
Broadcast = $doc.Broadcast
ChartDataPointTrack = $doc.ChartDataPointTrack
IsInAutosave = $doc.IsInAutosave
WorkIdentity = $doc.WorkIdentity
AutoSaveOn = $doc.AutoSaveOn
}
foreach ($key in $properties.Keys) {
Write-Host "$($key): $($properties[$key])"
}
}
# カスタムプロパティを設定する関数
function Set-CustomProperty {
param (
[object]$doc,
[string]$propName,
[object]$propValue
)
try {
$properties = $doc.CustomDocumentProperties
if ($null -eq $properties) {
Write-Error "カスタムプロパティが見つかりませんでした。"
return
}
} catch {
Write-Error "カスタムプロパティの取得に失敗しました: $_"
return
}
# カスタムプロパティの一覧を表示(デバッグ用)
foreach ($property in $properties) {
Write-Host "Property Name: $($property.Name), Property Value: $($property.Value)"
}
# 既存のカスタムプロパティをチェック
try {
$property = $properties.Item($propName)
Write-Host "Property found: $($property.Name), Value: $($property.Value)"
} catch {
# プロパティが存在しない場合は例外が発生するので無視
Write-Host "Property '$propName' not found."
$property = $null
}
if ($null -ne $property) {
if ($null -eq $propValue) {
# プロパティを削除
try {
Write-Host "Deleting custom property: $propName"
$properties.Remove($propName)
} catch {
Write-Error "カスタムプロパティの削除に失敗しました: $_"
}
} else {
# 既存のプロパティを更新
Write-Host "Updating custom property: $propName = $propValue"
$property.Value = $propValue
}
} else {
if ($null -ne $propValue) {
# 新しいプロパティを追加
try {
Write-Host "Adding new custom property: $propName = $propValue"
$properties.Add($propName, $false, 4, $propValue) # 4はmsoPropertyTypeString
} catch {
Write-Error "カスタムプロパティの追加に失敗しました: $_"
}
}
}
}
# 文書プロパティを表示
Write-Host "現在の文書プロパティ:"
Get-DocumentProperties -doc $doc
# 承認者プロパティを設定
Write-Host "承認者プロパティを設定中..."
Set-CustomProperty -doc $doc -propName "Approver" -propValue "小谷"
# 承認フラグプロパティを設定
Write-Host "承認フラグプロパティを設定中..."
Set-CustomProperty -doc $doc -propName "ApprovalFlag" -propValue "未承認"
# 1つ目のテーブルを取得
Write-Host "1つ目のテーブルを取得中..."
try {
$table = $doc.Tables.Item(1)
Write-Host "First table retrieved."
} catch {
Write-Error "テーブルの取得に失敗しました: $_"
return
}
# テーブルのプロパティを取得
$rows = $table.Rows.Count
$columns = $table.Columns.Count
Write-Host "Table properties retrieved: Rows=$rows, Columns=$columns"
# 各セルの情報を取得
foreach ($row in 1..$rows) {
foreach ($col in 1..$columns) {
try {
$cell = $table.Cell($row, $col)
$cellText = $cell.Range.Text
Write-Host "Row: $row, Column: $col, Text: $cellText"
} catch {
Write-Host "Row: $row, Column: $col, Text: (cell not found)" -Foreground Red
}
}
}
# 1つ目のセルを取得
Write-Host "1つ目のセルを取得中..."
$cell = $table.Cell(2, 6)
Write-Host "Cell (2, 6) retrieved."
# セルの座標とサイズを取得
$left = $cell.Range.Information(1) # 1 corresponds to wdHorizontalPositionRelativeToPage
$top = $cell.Range.Information(2) # 2 corresponds to wdVerticalPositionRelativeToPage
$width = $cell.Width
$height = $cell.Height
Write-Host "Cell coordinates and size retrieved: Left=$left, Top=$top, Width=$width, Height=$height"
# 画像のサイズを設定
$imageWidth = 50
$imageHeight = 50
# 画像の中央位置を計算
$imageLeft = $left + ($width - $imageWidth) / 2
$imageTop = $top + ($height - $imageHeight) / 2
# 既存の画像を削除(もしあれば)
Write-Host "既存の画像を削除中..."
foreach ($shape in $doc.Shapes) {
if ($shape.Type -eq 3) { # 3 corresponds to wdInlineShapePicture
$shape.Delete()
}
}
Write-Host "Existing images deleted."
# 新しい画像を挿入
Write-Host "新しい画像を挿入中..."
$shape = $doc.Shapes.AddPicture($this.ImagePath, $false, $true, $imageLeft, $imageTop, $imageWidth, $imageHeight)
Write-Host "New image inserted."
# 画像のプロパティを変更
Write-Host "画像のプロパティを変更中..."
$shape.LockAspectRatio = $false
$shape.Width = 50
$shape.Height = 50
Write-Host "Image properties modified."
# ドキュメントを保存して閉じる
Write-Host "ドキュメントを保存して閉じています..."
$doc.Save()
$doc.Close()
} catch {
Write-Error "エラーが発生しました: $_"
} finally {
# スクリプト実行後に存在するWordプロセスを取得
$allWordProcesses = Get-Process -Name WINWORD -ErrorAction SilentlyContinue
# スクリプト実行前に存在していたプロセスを除外して終了
$newWordProcesses = $allWordProcesses | Where-Object { $_.Id -notin $existingWordProcesses.Id }
foreach ($proc in $newWordProcesses) {
try {
$proc.Kill()
} catch {
Write-Warning "プロセスの終了に失敗しました: $($_.Exception.Message)"
}
}
# Wordアプリケーションを終了
try {
$word.Quit()
} catch {
Write-Warning "Wordアプリケーションの終了に失敗しました: $($_.Exception.Message)"
}
}
Write-Host "カスタムプロパティが設定されました。"
}
}
# INIファイルから設定を読み込む
Write-Host "INIファイルから設定を読み込んでいます..."
$filePath = $iniContent["FilePath"]
$approver = $iniContent["Approver"]
$approvalFlag = $false
if ($iniContent.ContainsKey("ApprovalFlag")) {
$approvalFlagValue = $iniContent["ApprovalFlag"]
if ($approvalFlagValue -eq "承認") {
$approvalFlag = $true
} elseif ($approvalFlagValue -eq "未承認") {
$approvalFlag = $false
} else {
Write-Host "不明なApprovalFlagの値: $approvalFlagValue"
}
}
$imagePath = $iniContent["ImagePath"]
Write-Host "INIファイルから設定を読み込みました。"
# クラスのインスタンスを作成して処理を実行
Write-Host "WordDocumentProcessorクラスのインスタンスを作成しています..."
$processor = [WordDocumentProcessor]::new($filePath, $approver, $approvalFlag, $imagePath, $iniFilePath)
Write-Host "WordDocumentProcessorクラスのインスタンスを作成しました。"
Write-Host "ProcessDocumentメソッドを呼び出しています..."
$processor.ProcessDocument()
Write-Host "ProcessDocumentメソッドの呼び出しが完了しました。"