/d Dati da assegnare al NomeValore del Registro di sistema da aggiungere. /f Sovrascrive la voce del Registro di sistema ...

/d         Dati da assegnare al NomeValore del Registro di sistema da              aggiungere.    /f         Sovrascrive la voce del Registro di sistema esistente senza              chiedere conferma.  Esempi:    REG ADD \\ABC\HKLM\Software\MyCo     Aggiunge la chiave HKLM\Software\MyCo sul computer remoto ABC    REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead     Aggiunge un valore (nome: Data, tipo: REG_BINARY, dati: fe340ead)    REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail     Aggiunge un valore (nome: MRU, tipo: REG_MULTI_SZ, dati: fax\0mail\0\0)    REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d ^%systemroot^%     Aggiunge un valore (nome: Path, tipo: REG_EXPAND_SZ, dati: %systemroot%)     Avviso: utilizzare l'accento circonflesso (^ ) nella stringa     di espansione