Board index » delphi » RegistryConnect Problem With NT --> 95/98 Connection
iwil...@dundee.tokheim.com (Iain Wilson)
![]() Delphi Developer |
Tue, 06 Apr 2004 18:27:33 GMT
RegistryConnect Problem With NT --> 95/98 Connection
As A test I ran the following program (Code at bottom) from an NT 4.0
Server logged in as Administrator. I am able to connect to any other NT server/workstation on our network and read the registry. However, when I attempt to read the registry of any 95/98 I get a "Unable To Connect To Remote Machine" message and thus no read of the registry. If I understand correctly I should be able to connect to any machine Am I correct or do I have to install the addon to each of the 95/98 This program will always run on an NT 4.0 server logged in as Any help is much appreciated Iain --------------------------------------------------------------------------- Listbox1.items.clear; R := TRegistry.Create; if not R.RegistryConnect('\\'+ Edit1.text) R.OpenKey('\Software\Microsoft\Windows R.OpenKey('\System\CurrentControlSet\Control\ComputerName\ComputerName\', R.Free; |