![]() |
Delphi-Version: 2010
Set hostname - can't write to registry
I'm trying change host name (like My Computer properties --> Computer Name).
I did this:
Delphi-Quellcode:
but raises exception that failed to set data for these values.
if OpenKey('SYSTEM\CurrentControlSet\services\Tcpip\Parameters', True) then
try WriteString('NV Hostname', FHostName); WriteString('Hostname', FHostName); finally CloseKey; end; So, I tried this:
Delphi-Quellcode:
Returns false. I'm administrator.
function SetComputerNameEx(NameType: TComputerNameFormat; lpComputerName: PWideChar): BOOL; stdcall;
external 'kernel32.dll' name 'SetComputerNameExW'; SetComputerNameEx(ComputerNamePhysicalDnsHostname, 'NewName'); |
AW: Set hostname - can't write to registry
Zitat:
|
AW: Set hostname - can't write to registry
Zitat:
|
Re: Set hostname - can't write to registry
I have admin rights.
Last error looks to be success, but SetComputerName and SetComputerNameEx returns false. |
AW: Re: Set hostname - can't write to registry
Zitat:
Zitat:
|
Re: Set hostname - can't write to registry
Delphi-Quellcode:
I tried with Run as admin too.
// ShowMessage(BoolToStr(SetComputerName('TTX'), True));
// ShowMessage(SysErrorMessage(GetLastError)); // Set computer name and host name ShowMessage(BoolToStr(SetComputerNameEx(ComputerNamePhysicalDnsHostname, 'TTX-N'), True)); // Set computer name ShowMessage(BoolToStr(SetComputerNameEx(ComputerNamePhysicalNetBIOS, 'TTX'), True)); On WXP is working, on W7 is not working. |
AW: Re: Set hostname - can't write to registry
Zitat:
Und nun rate mal, vor welchem API-Aufruf das GetLastError den Status liefert? Tipp: Das Anzeigen des Message-Form war erfolgreich. |
Re: Set hostname - can't write to registry
I don't understand what you mean. What I should to do to make it working?
|
AW: Set hostname - can't write to registry
You have to ensure, that no other API function is called after the one you want to check against errors. Otherwise the error state is overwritten before you check it...
But here you call ShowMessage for the result of SetComputerName and fetch the error after this. So you won't get an error unless ShowMessage fails... What about this way?
Delphi-Quellcode:
if SetComputerName('TTX') then
ShowMessage('Success') else ShowMessage(SysErrorMessage(GetLastError)); |
Re: Set hostname - can't write to registry
Hm, now return True, but names are not changed after restart :(
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:52 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz