I need to programmatically change the "Level" String found in \HKEY_CURRENT_USER\Software\Intuit\QBWebConnector to "Verbose"
What is the best way to do this? C#, bat file? I have never tinkered with the registry before...
Thanks.
If the registry entry you are going to change is already in the registry, the simplest way to create a *.reg file that changes the registry entry as you need it is as follows:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Intuit\QBWebConnector]
"Level"="Verbose"
Double-clicking the file and confirming the security warning(s) will perform the changes on your registry.
Or, in a batchfile, you can silently import the registry file via "REGEDIT /S pathname"
Be careful with the registry since you might otherwise wreck your windows installation.
Here are some more ways in order of easyness not mentioned above:
reg /?
to see options and the Reg reference for details.regini /?
to see instructions or the MSDN article Distributing Registry Changes for details.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With