-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ファイルの場所を管理者としてコマンドプロンプトを開く、に対応する #608
Comments
なお、該当プログラムは CUI アプリとしてではなく GUI アプリで実際の UI なしで作る予定。 |
管理者権限は結構センシティブなので、悪用されないように要注意ってかんじですかね。 |
UAC周りは色々とごちゃごちゃしてますね。
まずこれは賛成です。 前提として「管理者権限のコマンドプロンプト」は気軽に使えるべきではありませんが、
この実現方法はやーです(笑 oleVerbに"runas"を指定してあげれば普通にcmdを管理者権限で起動できたような。 |
Me To.
Me To. でも出来るのかなぁ。。。 |
別アプリから cmd.exe を管理者権限で実行するのは出来ました。 |
"runas" で管理者権限で起動はできました。 |
そのあたりは柔軟に対応でw ネットワークドライブのことを考えると そういえば、cdコマンドってドライブ変えられましたっけ? C:\Windows\System32> cd N:\共有フォルダ
C:\Windows\System32> N:
N:\共有フォルダ> cd C:\Windows
N:\共有フォルダ> C:
C:\Windows> pushd N:\共有フォルダ
N:\共有フォルダ> _ みたいな動きになるような。 |
|
@k-takata さん
そんなオプションが存在していたとは知りませんでした。 windows8.1で C:\work\sakura-mygithub>help cd
Displays the name of or changes the current directory.
CHDIR [/D] [drive:][path]
CHDIR [..]
CD [/D] [drive:][path]
CD [..] マジで知りませんでした。 |
#618 で対応 |
↑チケット番号間違えたので修正 |
ファイルの場所を管理者としてコマンドプロンプトを開く、に対応する
#549 に加えて、管理者権限のコマンドプロンプトがあると便利だと思う。
https://clown.hatenablog.jp/entry/20110524/uac
にあるように sakura.exe とは別に requireAdministrator を設定した exe を
別に用意してそれを ShellExecute で起動する (上記サイトでは ShellExecuteEx とあるが
ShellExecute でもいいと思う)
powershell も対応してほしい、という話になると思うが、
通常版の powershell がまだ未検討なので、またあとで考える。
The text was updated successfully, but these errors were encountered: