管理者モードで編集用のファイルを開くには?
私は.configファイルをメモ帳++で開くように設定しています。編集したファイルは保護された場所(例: c:\windows, c:\program files…など)にあるので、管理者権限が必要です。
.configファイルをダブルクリックして、管理者権限でNotepad++を開くことができるようにしたい。UACプロンプトが出てきても問題ありません。
その方法はありますか?
私は.configファイルをメモ帳++で開くように設定しています。編集したファイルは保護された場所(例: c:\windows, c:\program files…など)にあるので、管理者権限が必要です。
.configファイルをダブルクリックして、管理者権限でNotepad++を開くことができるようにしたい。UACプロンプトが出てきても問題ありません。
その方法はありますか?
最良の方法は、Notepad++がインストールされているフォルダ(32ビットWindowsの場合はProgram Files、64ビットWindowsの場合はProgram Files(x86))に直行し、そこからNotepad++の実行ファイルを見つけ、右クリックして互換性を選択し、下部にある「管理者として実行」のチェックボックスをオンにすることです。
これにより、アプリケーションは常にUAC警告を表示しますが、管理者として編集する機能は常にあります。
幸運を祈ります!
EDIT: UACプロンプトを起動せずにショートカットを作成できる この記事 を見つけました。これは技術的にはWindows10用ですが、Win7+でも同じように動作するはずです。
ここでの利点は、オリジナルの(デフォルトの)メモ帳++ .exeファイルでファイルを開くときにUACプロンプトが表示されないことです。不利な点は、このコピーが必ずしもオリジナルと同じ方法で最新の状態に保たれているとは限らないことで、最終的には.dllや設定のバージョンの不一致の問題が発生する可能性があることです。しかし、そのようなことが起こった場合、アンインストール/インストールはいつでも簡単にできます。
これは2010年に元の質問が投稿された時には利用できませんでしたが、2012年現在 - ベストアンサー(少なくとも私が考える限り):
Install nppSaveAsAdmin:
From http://sourceforge.net/projects/nppsaveasadmin :
このプラグインを利用すると、任意のファイルを管理者として保存することができます。メモ帳++で「保存」を押すだけで、ユーザーとして変更できない場合は、メモ帳++が管理者として保存してくれます。Windows XP、Windows Vista、Windows 7、Windows 8に対応しています。
「管理者として保存」プラグインは、Notepad++のプラグインマネージャーから素早く簡単にインストールできます。(プラグイン / プラグインマネージャ / プラグインマネージャを表示 / 利用可能) 管理者として保存」にチェックを入れて、「インストール」をクリックします)
Notepad++ は通常通り、完全な管理用 UAC トークンで実行する必要なく実行し続けます。ただし、アクセスが許可されていないファイルを保存しようとしていることを Notepad++ が認識すると、NppAdminAccess.exe にフォークします(UAC プロンプトが表示されます)。はい」をクリックするだけで、ファイルは管理者権限で保存されます。
これが、ウェブ開発のためにhostsファイルを編集しなければならないときに、私が見つけた最も簡単で柔軟な方法です。もちろん、Joelさんの提案のように、ある拡張子のファイルをすべて管理者として開きたい場合は、"open with… “を使ってもいいでしょう。-> 作成したコピーの "open with… "で "Choose default program "を選択すればいい。
一番良い方法は、Notepad++を管理者として実行するように設定することです。問題は右クリックオプションが壊れてしまうことです。そこで、古いものを削除した右クリックオプションの代替品を作ってみました。私の修正の良いところは、レジストリのディレクトリ設定に追加したことです。これで、フォルダを右クリックして「メモ帳++で編集」を選択すると、メモ帳++内のすべてのファイルを開くことができるようになりました。) 私はVBScriptのプログラミングをたくさんやっています。そのおかげで、何か新しい方法を思いついたときやオブジェクトを変更したときに、グローバルな変更をしながらすべてのファイルを編集することが簡単にできるようになりました。
私のVBScriptはレジストリキーを変更する前にバックアップしています。Notepad++を管理者に設定していないので、Notepad++の実行ファイルを右クリックして、管理者として実行するように変更する必要があります。これを管理者として実行するようにするにはどうすればいいのか、研究を始めています。それを思いついたら、管理者として編集するか、普通に編集するかを選択できるように、私の投稿を編集します。
'==========================================================================================
' NAME: New-OpenWithNotepad++(WinVista7).vbs
' EDITED: Kevin Dondrea , Gordos-Dondrea Enterprises and Foundation
' DATE : 8/12/2012
' COMMENT: This script Exports Registry keys and replaced Notepad++ Right Click options.
' Works with Windows Vista and 7. Also works for restricted Win XP accounts.
' WEB LINK:
'==========================================================================================
Option Explicit
' =============== START ADD ADMIN RIGHTS ===============
' This adds the Admin Run Function for Windows Vista and 7
' You must put this at the top below computer and End If at the
' very end of the script
If WScript.Arguments.length = 0 Then
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "WScript.exe", """" & _
WScript.ScriptFullName & """" &_
" RunAsAdministrator", , "runas", 1
Else
' Do not forget to add End If at the end of the script
' =============== END ADD ADMIN RIGHTS ===============
On Error Resume Next
' =============== START CONSTANT VARIABLES ===============
Const HKEY_CLASSES_ROOT = &H80000000
Const HKEY_CURRENT_USER = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002
Const HKEY_USERS = &H80000003
' =============== END CONSTANT VARIABLES ===============
' =============== START DIM VARIABLES ===============
Dim objFSO, objWrite2File, objShell, objReg, objRegistry, objWshShell
Dim strDate, strTime, strTime2, strFileName, strOpenFile
Dim strComputer, strCommand, strHostName, strUserName
Dim intRC, strKeyPath, strValueName, strValue
' =============== END DIM VARIABLES ===============
' --------------------------------------------------------------------------
' =============== START COMPUTER NAME, TIME and DATE ===============
strComputer = "."
' Reads registry for Computer Name
Set objShell = CreateObject("WScript.Shell")
' Edit or Add with Registrry Object
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\" & _
strComputer & "\root\default:StdRegProv")
' Same as above but used only to delete registry key
Set objRegistry=GetObject("winmgmts:\" & _
strComputer & "\root\default:StdRegProv")
strHostName = objShell.RegRead ("HKLM\SYSTEM\CurrentControlSet\Services\" & _
"Tcpip\Parameters\Hostname")
strUserName = objShell.RegRead ("HKLM\SOFTWARE\Microsoft\Windows NT\" & _
"CurrentVersion\Winlogon\DefaultUserName")
' Retreives Date and Time
strTime = Right("0" & Hour(now()), 2) & Right("00" & _
Minute(Now()), 2) & Second(Now())
strTime2 = Right("0" & Hour(now()), 2) & ":" & Right("00" & ":" & _
Minute(Now()), 2) & ":" & Second(Now())
strDate = Right("0" & Month(now()), 2) & "-" & Right("00" & _
Day(Now()), 2) & "-" & Year(Now())
' -----------------------------------------------------------
' =============== START BACKUP OF REGISTRY KEYS USED FOR ===============
' Original Command
' strCommand = "regedit /e <FilePath> <RegKey>"
' Local Machine ......
strCommand = "regedit /e " & strHostName & "-" & strDate & "-" & _
strTime & "-BackupLM-Notepad++.reg " & _
"""HKEY_LOCAL_MACHINE\SOFTWARE\Classes" & _
"\CLSID\{00F3C2EC-A6EE-11DE-A03A-EF8F55D89593}"""
Set objWshShell = WScript.CreateObject("WScript.Shell")
intRC = objWshShell.Run(strCommand, 0, TRUE)
If intRC <> 0 then
WScript.Echo "Error returned from exporting Registry: " & intRC
Else
WScript.Echo "No errors returned from exporting the Registry file"
End If
' =============== END BACKUP OF REGISTRY KEYS USED FOR ===============
' -----------------------------------------------------------
' =============== START NEW OPEN * SHELL COMMAND ===============
' Name of Registry Entry Key\Path
strKeyPath = "*\shell\Edit With Notepad++\command"
objReg.CreateKey HKEY_CLASSES_ROOT,strKeyPath
' Name of Registry Entry String
strValueName = ""
strValue = "C:\progra~1\notepad++\notepad++.exe %1"
objReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath,NULL,strValue
' =============== START NEW OPEN DIRECTORY SHELL COMMAND ===============
' Name of Registry Entry Key\Path
strKeyPath = "Directory\shell\Edit With Notepad++\command"
objReg.CreateKey HKEY_CLASSES_ROOT,strKeyPath
' Name of Registry Entry String
strValueName = ""
strValue = "C:\progra~1\notepad++\notepad++.exe %1"
objReg.SetStringValue HKEY_CLASSES_ROOT,strKeyPath,NULL,strValue
' -----------------------------------------------------------
strKeyPath = "*\shellex\ContextMenuHandlers\ANotepad++"
objRegistry.DeleteKey HKEY_CLASSES_ROOT,strKeyPath
strKeyPath = "SOFTWARE\Classes\CLSID\{00F3C2EC-A6EE-11DE-A03A-EF8F55D89593}\Settings"
objRegistry.DeleteKey HKEY_LOCAL_MACHINE,strKeyPath
' Ending Message
MsgBox"Notepad++ Right-Click Settings" & VbCrLf & _
"Have Been Created", ,"Click OK To Close Window"
' Cleans up Variables From Memory
Set objFSO = Nothing
Set objWrite2File = Nothing
Set objShell = Nothing
Set objReg = Nothing
Set objRegistry = Nothing
Set objWshShell = Nothing
Set strDate = Nothing
Set strTime = Nothing
Set strTime2 = Nothing
Set strFileName = Nothing
Set strOpenFile = Nothing
Set strComputer = Nothing
Set strCommand = Nothing
Set strHostName = Nothing
Set strUserName = Nothing
Set intRC = Nothing
Set strKeyPath = Nothing
Set strValueName = Nothing
Set strValue = Nothing
End If
プラグインをアンインストールします(プラグインマネージャーを除く)。これで問題が解決しました。プラグインを1つずつインストールして、どのプラグインが問題を起こすかを確認することができます。
簡単で効果的な方法だよ。デスクトップにショートカットを作成する(c:\program files\notepad++\notpad++.exe -> right click -> sendto -> desktop) 2. create a copy of that shortcut and add _ADMIN to the shortcut 3. _ADMINショートカットを右クリックする - properties - shortcut - button advanced - tick “run as administrator” 4. ファイル・エクスプローラーを開いて、"shell:sendto “とタイプする 5. 開いたフォルダに両方のショートカットをドラッグ・アンド・ドロップする
これで、任意のファイルの "SendTo "リストに、notepad++とnotepad++_ADMINの両方があるようになりました。