December 2, 200421 yr Author Ok got a question, I just got Notepad2, and think its worthy of being my new Wordpad, but how would I go about doing that?
December 2, 200421 yr Protos,totoymola has created a installshield install for metapad. Which... ehh... sort kinda... the same.pm him he can send it to u. @Nologic good advice.
December 3, 200421 yr Protoss -Well I'd do up a simple script like so at the very least. If FileExists ( @WindowsDir & "\ServicePackFiles\i386\Notepad.exe" ) Then FileCopy ( @ScriptDir & "\Notepad2.exe", @WindowsDir & "\ServicePackFiles\i386\Notepad.exe" , 1 ) EndIfIf FileExists ( @SystemDir & "\dllcache\Notepad.exe" ) Then FileCopy ( @ScriptDir & "\Notepad2.exe", @SystemDir & "\dllcache\Notepad.exe" , 1 ) EndIfIf FileExists ( @SystemDir & "\Notepad.exe" ) Then FileCopy ( @ScriptDir & "\Notepad2.exe", @SystemDir & "\Notepad.exe" , 1 ) EndIfIf FileExists ( @WindowsDir & "\Notepad.exe" ) Then FileCopy ( @ScriptDir & "\Notepad2.exe", @WindowsDir & "\Notepad.exe" , 1 ) EndIfTho that will flate out nuke Notepad to where there is no backup...so you may want to code that in.Some thing like:FileCopy ( @WindowsDir & "\Notepad.exe", @WindowsDir & "\Notepad.exe.bak" , 1 )Tho that code would go before the prior code.
Create an account or sign in to comment