Skip to content

Instantly share code, notes, and snippets.

@7cc
Last active November 30, 2019 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 7cc/3b013b8ddf5c77c3252c8ab7327fc5eb to your computer and use it in GitHub Desktop.
Save 7cc/3b013b8ddf5c77c3252c8ab7327fc5eb to your computer and use it in GitHub Desktop.
管理者権限で実行
powershell -command Start-Process cmd -verb runas -ArgumentList /k,cd,$PWD
# 相対パス
powershell -command Start-Process notepad -verb runas -ArgumentList (Resolve-Path .\file.txt)
powershell -command Start-Process notepad -verb runas -ArgumentList $PWD\file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment