0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerPointの「ファイル内のイメージを圧縮しない」に既定でチェックを入れるレジストリの編集をPowerShellで実装

Last updated at Posted at 2025-04-21

ファイル>オプションの「ファイル内のイメージを圧縮しない」に常にチェックを入れる設定

手動でレジストリキーの編集するときの手順は以下:
https://answers.microsoft.com/en-us/msoffice/forum/all/how-to-disable-image-compression-permanently-and/8916e64d-f515-4345-98f6-6cffcc4d9883

これはPowerShellでも以下の手順で実行できる

$regPathEditcom = "HKCU:\Software\Microsoft\Office\16.0\PowerPoint\Options"

# 現状の設定確認("AutomaticPictureCompressionDefault"がないことを確認)
Get-ItemProperty -Path $regPathEditcom

# 設定の更新
Set-ItemProperty -Path $regPathEditcom -Name "AutomaticPictureCompressionDefault" -Value 0 -Type DWord

参考にしたページ:
https://learn.microsoft.com/ja-jp/powershell/module/microsoft.powershell.management/set-itemproperty?view=powershell-7.5

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?