Is there a way to get a new registry recognized without rebooting?

0

Is there a way to get a new registry recognized without rebooting? I'm adding

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\EnableLinkedConnections

JimDel

Posted 2009-10-27T14:12:47.883

Reputation: 1 834

Answers

4

That all depends on the application that is using the registry key. When a key is updated, it is updated, but an application may only look at the key at startup. Rebooting is just a simple way of ensuring that the new key is loaded.

heavyd

Posted 2009-10-27T14:12:47.883

Reputation: 54 755

3

From what I read here, this registry key is about this:

This value enables Windows Vista to share network connections between the filtered access token and the full administrator access token for a member of the Administrators group. After you configure this registry value, LSA checks whether there is another access token that is associated with the current user session if a network resource is mapped to an access token. If LSA determines that there is a linked access token, it adds the network share to the linked location.

The key itself is updated and valid in the registry as soon as you modify it, like headyd said. However, this will most likely be read by the system only at logon time, so you will have to reboot, or at least log again.

Registry is like a database of parameters available for programs. But it's only a place to read and store parameters, it won't trigger an update in the concerned programs when you change a value.

Gnoupi

Posted 2009-10-27T14:12:47.883

Reputation: 7 909

2

The best way to get the registry refreshed is to kill the Explorer.exe process via Task Manager. That way, the registry is reloaded (on old trick that has worked since Windows 95).

Although I am not sure if the entire registry or only part of it is reloaded, @Gnoupi 's advice to logout and log back in helps as well.

Jaspio

Posted 2009-10-27T14:12:47.883

Reputation: 81

Worked for me :) I had to do it because I changed my program files path: http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/how-do-you-change-the-default-installation/73450b25-d794-4f18-9add-75253b893343

– Highmastdon – 2015-06-09T18:36:17.860

0

I just wonder if you can identify a service that integrates with the registry setting, and just restart that service. A wild guess, would restarting the workstation or server service circumvent a reboot? Else any of those services beginning with Microsoft or Windows.

Guy Thomas

Posted 2009-10-27T14:12:47.883

Reputation: 3 160