Como substituo o Bloco de notas no Windows 7? [duplicado]

35

Eu uso o notepad2 . Eu amo notepad2 .

Como eu substituo notepad2 no windows 7, então eu nunca mais uso a versão antiga do notepad?

    
por David Basarab 15.07.2009 / 12:26

7 respostas

36

Ah, por que, claro: Substituidor de bloco de notas .

    
por 23.11.2010 / 14:25
33

Use o instalador Notepad2 Modifications . Funciona em 32Bit e 64Bit.

Esta página wiki do Notepad ++ também tem um guia passo-a-passo para o Windows XP e Windows Vista, que também funciona no Windows 7.

    
por 15.07.2009 / 12:29
3

Se você quiser ter certeza de que está usando o Notepad2, vá para um arquivo em que você normalmente usaria o Notepad2 e clique com o botão direito em > propriedades. Então, onde diz "abre com", selecione alterar e selecione Notepad2.

    
por 15.07.2009 / 12:30
1

A partir da data desta postagem, a abordagem recomendada para substituir o Notepad com o Notepad2 no Windows 7 é melhor descrita aqui .

    
por 07.07.2010 / 15:20
0

Renomeie notepad.exe para oldpad.exe e uma cópia ou link simbólico de sua substituição para notepad.exe

    
por 15.07.2009 / 12:30
-1

Pensei em jogar um na mistura. É baseado no instalador original do notepad2 script que funcionou bem no Vista. Eu o encontrei nesta postagem no fórum .

@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
    
por 03.09.2009 / 15:35
-1

No Windows XP, usei esse script desse site para fazê-lo funcionar . Você precisa executar essas funções de registro primeiro e colocar o script .vbs no diretório C: \ Arquivos de Programas \ notepad ++,

'// 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"
'//

Aqui está o 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
    
por 08.08.2011 / 16:43