se livrar do aviso ao instalar o arquivo de registro

2

Eu uso o Windows Vista, mas esta questão também é usada para outras versões do Windows.

Quando clico duas vezes para instalar um arquivo reg, recebo este aviso:

Adding information can unintentionally change or delete values and cause components to stop working correctly. If you do not trust the source of this information in myFile.reg, do not add it to the registry.

Existe alguma maneira de se livrar dele e da mensagem de aprovação depois?

    
por Yaron Naveh 20.07.2010 / 18:58

2 respostas

3

Regedit.exe supports a /s command-line switch to not display these messages. For example, to silently run the .reg file (with the /s switch) from a login script batch file, use the following syntax: regedit.exe /s path of .reg file

link

Isso pode ajudá-lo

    
por 20.07.2010 / 19:08
4

Altere o valor da chave:

HKEY_CLASSES_ROOT\regfile\shell\open\command

para:

regedit.exe /s "%1"

Seja MUITO cuidado depois de fazê-lo - esse aviso existe por um bom motivo.

    
por 20.07.2010 / 19:12