Adicione outros tipos de arquivo no menu de contexto "Novo"

6

Estou tentando adicionar entradas de arquivos PHP e HTML ao clique com o botão direito do mouse em Desktop - > Novo menu. Ele diz que os valores foram adicionados com sucesso ao registro, mas ainda assim eles não aparecem no menu.

[HKEY_CLASSES_ROOT\.php\ShellNew]
"NullFile"=""


[HKEY_CLASSES_ROOT\.html\ShellNew]
"NullFile"=""

Este é o guia que tentei: link

Eu tenho o UAC desativado se isso faz alguma diferença.

    
por Joel 23.07.2010 / 03:18

2 respostas

5

Aqui está o arquivo reg para adicionar nova entrada shell para .php & .html

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.php]
@="phpfile"
"Content Type"="text/plain"

[HKEY_CLASSES_ROOT\.php\ShellNew]
"Data"=hex:3c,3f,70,68,70,0d,0a,0d,0a,3f,3e

[HKEY_CLASSES_ROOT\phpfile]
@="PHP Script File"

[HKEY_CLASSES_ROOT\phpfile\DefaultIcon]
@="%SystemRoot%\System32\WScript.exe,3"

[HKEY_CLASSES_ROOT\phpfile\shell]

[HKEY_CLASSES_ROOT\phpfile\shell\open]

[HKEY_CLASSES_ROOT\phpfile\shell\open\command]
@="notepad %1"

[HKEY_CLASSES_ROOT\.html\ShellNew]
"FileName"="htmlfile.html"

Agora crie um arquivo htmlfile.html na pasta Windows \ ShellNew e insira o padrão html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Title Goes Here</title>
</head>
<body>

</body>
</html>
    
por 23.07.2010 / 15:05
0
por 23.07.2010 / 07:12