0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windowsでコマンドプロンプトから環境変数の登録・バックアップ・再読み込み

Posted at

環境変数の確認

コマンドプロンプトで確認
# ユーザーとシステム環境変数のPathを確認
set path
PowerShellで確認
# ユーザー環境変数のPathを確認
[System.Environment]::GetEnvironmentVariable("Path", "User") -split ";"
# システム環境変数のPathを確認
[System.Environment]::GetEnvironmentVariable("Path", "Machine") -split ";"

環境変数のバックアップ

コマンドプロンプト or PowerShell
# ユーザー環境変数
reg export "HKEY_CURRENT_USER\Environment" C:\バックアップ先のパス\user_env_backup.reg /y
# システム環境変数
reg export "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" C:\バックアップ先のパス\system_env_backup.reg /y

環境変数の登録

セッション内

コマンドプロンプト or PowerShell
set Example "c:\Example"

永続 (新規登録もしくは上書き)

コマンドプロンプト or PowerShell
# ユーザー環境変数
setx Example "c:\Example"
# システム環境変数
setx /m Example "c:\Example"

永続 (追加)

コマンドプロンプト or PowerShell
# ユーザー環境変数のPathに追加
setx Path "%PATH%;c:\Example"
# システム環境変数のPathに追加
setx /m Path "%PATH%;c:\Example"

環境変数設定ウインドウへのアクセス

コマンドプロンプト or PowerShell
control sysdm.cpl

ウインドウを再起動せず環境変数を再読み込み

PowerShell で Chocolatey をインストール(要 管理者権限)
# インストールページのNow run the following command:の値を実行してChocolateyをインストール
# もし管理者権限無しでインストールを行い、失敗した場合は"C:\ProgramData\chocolatey"を削除
コマンドプロンプトでの再読み込み
refreshenv
PowerShellでの再読み込み
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
refreshenv
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?