Comment puis-je export specific value from le registre to a text file using the ligne de commande?
Par exemple, Je veux export `Hkey_local_Machine\Software\mcafee` to a text file in C:.
Je viens de need the key – that's it.
J'ai essayé with `reg export` – it's giving everything, but Je viens de require the key of the partiular thing.
Comment export a specific registre key to a text fichier using commande line
Re: Comment export a specific registre key to a text fichier using commande line
Try this:
```
reg export Hkey_local_Machine\Software\mcafee C:\export.txt
```
Cela va export registry values according to windows REG format.
```
reg export Hkey_local_Machine\Software\mcafee C:\export.txt
```
Cela va export registry values according to windows REG format.