Oh, warum natürlich: Notepad Replacer .
Wie ersetze ich Notepad in Windows 7?
Ich verwende notepad2 . Ich liebe notepad2 .
Wie ersetze ich notepad2 in Windows 7, so dass ich die alte Notepad-Version nie mehr verwende?
7 Antworten auf die Frage
- Beliebte
- Neu
- Mit Kommentaren
- Aktiv
Verwenden Sie das Notepad2 Modifications- Installationsprogramm. Es funktioniert auf 32Bit und 64Bit.
Diese Notepad ++ - Wiki-Seite enthält auch eine schrittweise Anleitung für Windows XP und Windows Vista, die auch unter Windows 7 funktioniert.
Wenn Sie sicherstellen möchten, dass Sie Notepad2 verwenden, wechseln Sie zu einer Datei, für die Sie normalerweise Notepad2 verwenden, und klicken Sie mit der rechten Maustaste auf> Eigenschaften. Wenn dann "Öffnet mit" angezeigt wird, wählen Sie "Ändern" und wählen Sie "Notepad2".
Zum Datum dieses Beitrags wird der empfohlene Ansatz zum Ersetzen von Notepad durch Notepad2 unter Windows 7 am besten hier beschrieben .
Benennen Sie notepad.exe in oldpad.exe und eine Kopie oder einen symbolischen Link Ihres Ersatzes in notepad.exe um
Ich dachte nur, ich würde einen in den Mix werfen. Es basiert auf dem ursprünglichen Installationsskript notepad2, das in Vista gut funktioniert. Ich habe es in diesem Forum gefunden .
@echo off TITLE Notepad2 Install Script for Complete Windows Vista and 7 Notepad Replacement echo. echo Notepad2 Install Script for Complete Windows Vista and 7 Notepad Replacement echo Version 1.2 echo. echo (c) My Digital Life (www.mydigitallife.info) echo. echo. echo. echo Confirm to apply? (Press Ctrl-C and answer Y to terminate) pause echo. echo. if exist %Systemroot%\notepad.original.exe goto exist_notepad2_already if exist %Systemroot%\System32\notepad.original.exe goto exist_notepad2_already takeown /f %Systemroot%\notepad.exe takeown /f %Systemroot%\System32\notepad.exe icacls %Systemroot%\notepad.exe /grant "%username%":f icacls %Systemroot%\System32\notepad.exe /grant "%username%":f IF EXIST %SYSTEMROOT%\SysWOW64 (bcdedit.exe -set loadoptions "DDISABLE_INTEGRITY_CHECKS") copy %Systemroot%\notepad.exe %Systemroot%\notepad.original.exe copy %Systemroot%\System32\notepad.exe %Systemroot%\System32\notepad.original.exe echo. echo Original notepad.exe has been renamed to "notepad.original.exe" in its original folder. echo. copy %~dp0\notepad2.exe %Systemroot%\notepad.exe /y copy %~dp0\notepad2.exe %systemroot%\System32\notepad.exe /y echo. echo Notepad2 installation is completed. echo If no error occurred, Notepad2 will now replace all Notepad functions. echo. pause exit :exist_notepad2_already echo. echo INSTALLED NOTEPAD2 ALREADY!. echo. pause exit
In Windows XP habe ich dieses Skript verwendet , um es zum Laufen zu bringen . Sie müssen zuerst diese Registrierungsfunktionen ausführen und das VBS-Skript in das Verzeichnis C: \ Program Files \ notepad ++ einfügen.
'// USAGE '// 1) '// Navigate to registry key HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ '// '// 2) '// Add new subkey with the name of the executable you want replaced (no path) e.g. notepad.exe '// This step is what tells windows to use the replacement exe, to undo simply delete the key you created '// '// 3) '// Create new Sting Value called Debugger '// '// 4) '// Modify value and enter wscript.exe "path to this vbs" e.g. wscript.exe "C:\Program Files\notepad++\npp.vbs" '//
Hier ist das VBScript:
Option Explicit '// Declare variables Dim x ' old bad habit, I use this for general temporary variables Dim W ' This will be the WSHShell object Dim sCmd ' This will be the command to run '// Create WSHShell object Set W = CreateObject("WScript.Shell") '// Set the working directory to the one this script resides in '// If the target program doesn't care where it is run from then you don't need the following line W.CurrentDirectory = LeftB(WScript.ScriptFullName, LenB(WScript.ScriptFullName) - LenB(WScript.ScriptName)) '// Set the target executable sCmd = "notepad++.exe" '// Skip the first argument but grab all the rest If WScript.Arguments.Count > 1 Then For x = 1 To WScript.Arguments.Count - 1 '// If the argument contains a space then enclose it with "" If InStrB(WScript.Arguments(x), " ") Then sCmd = sCmd & " """ & WScript.Arguments(x) & """" Else sCmd = sCmd & " " & WScript.Arguments(x) End If Next End If '// Run the command '// The number after the command determines how the window should be initially (google WSHShell.Run) '// The boolean at the end determines whether this script should run the target then exit or wait until the target exits W.Run sCmd, 1, False
Verwandte Probleme
-
2
Erinnert sich Windows 7 Home Premium an Netzwerkfreigaben-Passwörter?
-
4
Wie sperre ich rechtsbündige Symbolleisten in Windows 7, ohne dass sie schrecklich aussehen
-
4
Windows 7 "Aero Snap" -Funktion für Ubuntu GNOME
-
3
Meine zweite Festplatte ist in Windows 7 nicht sichtbar
-
2
Wie werden Windows 7-Taskleistensymbole in zwei Reihen angeordnet?
-
1
Probleme beim Standby unter Windows 7
-
6
Wie steuern Sie die Windows 7-Snap-Funktion mit zwei Monitoren?
-
10
Wie aktualisiere ich von Windows 7 RC auf Windows 7 RTM?
-
3
Welchen Spyware-Schutz gibt es für Windows 7?
-
4
Wie verbinde ich die Xbox360 mit Windows 7 (RC) Windows Media Center?