Advertisement
mikedopp

Regedit Tricks

Aug 19th, 2015
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 1.66 KB | None | 0 0
  1. To run multiple instances of the registry editor , just run it with a key -m
  2.  
  3. regedit.exe-m
  4.  
  5.  
  6. Interactive Import Registry File.
  7. regedit.exe drive: \ path \ k_faylu.reg
  8.  
  9. This is the default action for REG-files. When you double-click on the REG-file, Registry Editor prompts you to make changes to the registry.
  10.  
  11. Pacific Import Registry File. Evidence in this case does not appear, the import is executed immediately:
  12. regedit.exe / s drive: \ path \ k_faylu.reg
  13.  
  14.  
  15. Export the entire registry to the specified file:
  16. regedit.exe / e drive: \ path \ k_faylu.reg
  17.  
  18. Export done in silent mode without user interaction and without dialog boxes. To export a specific section, use the form:
  19. regedit / e drive: \ path \ k_faylu.reg "HKEY_CURRENT_USER \ Control Panel \ Desktop"
  20.  
  21.  
  22. By default, regedit.exe, starting with Windows 2000, while exporting the registry keys created REG-files encoded UNISODE. This behavior can be overridden by specifying the key instead of / a key / e.
  23. regedit / a drive: \ path \ k_faylu.reg "HKEY_CURRENT_USER \ Control Panel \ Desktop"
  24. As a result, the file will be encoded win1251 with this headline:
  25. REGEDIT4 [HKEY_CURRENT_USER \ Control Panel \ Desktop] "ActiveWndTrackTimeout" = dword: 00000000 ...
  26.  
  27.  
  28. In Windows 9x registry editor took three more keys:
  29.  
  30. Perform operations on an alternate file with a custom branch of the registry (HKCU).
  31. regedit.exe / L: drive: \ path \ k_faylu \ user.dat
  32.  
  33.  
  34. Perform operations on file with the alternate branch of the registry HKLM.
  35. regedit.exe / R: drive: \ path \ k_faylu \ system.dat
  36.  
  37.  
  38. Remove from the register of the specified partition.
  39. regedit.exe / D "HKEY_CURRENT_USER \ Control Panel \ Desktop"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement