PowerShell ISE で REG EXPORT が機能しない

PowerShell ISE で REG EXPORT が機能しない

.reg ファイルを作成し、その中のキー情報をエクスポートする簡単なコマンドを書こうとしているのですが、管理者として実行しても REG EXPORT コマンドが受け入れられないようです。

New-Item -Path "C:\Users\operateur\Documents\Configuration.reg"
REG EXPORT "HKLM\SOFTWARE\Groupe ABC", "C:\Users\operateur\Documents\Configuration.reg"

答え1

興味深いですね。コンソールからコマンドを実行すると、既存のファイルを上書きするかどうかの確認プロンプトが表示されます。

PS C:\...\regExport>New-Item Configuration.reg


    Directory: C:\Users\keith\Sandbox\regExport


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----         12/4/2020   5:26 PM              0 Configuration.reg


PS C:\...\regExport>REG EXPORT "HKLM\SOFTWARE\IrfanView", "Configuration.reg"
File Configuration.reg already exists. Overwrite (Yes/No)?

しかし、同じコマンドが ISE でハングアップします。

実際にブロックしているReg Export不要なファイルの作成からNew-Item同じ名前の空のファイルを作成するコマンドレット。


Either eliminate the **`New-Item`** Cmdlet or use the `/y` switch with the **`Reg Export`** command.

REG EXPORT KeyName FileName [/y] [/reg:32 | /reg:64]

  Keyname    ROOTKEY[\SubKey] (local machine only).
    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]
    SubKey   The full name of a registry key under the selected ROOTKEY.

  FileName   The name of the disk file to export.

  /y       Force overwriting the existing file without prompt.

  /reg:32  Specifies the key should be accessed using the 32-bit registry view.

  /reg:64  Specifies the key should be accessed using the 64-bit registry view.

関連情報