mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 17:44:26 +08:00
In particular:
- `IDS_NOSET`: When the user tries `hostname -s ...`, tell them that for
changing the computer host's name, one has to go in the "Computer Name"
tab in the "System" control panel applet.
NOTE: You may observe that Windows' hostname says instead,
"Use the Network Control Panel Applet to set hostname."
This piece of information is wrong since Windows 2000. Indeed:
* From NT 3.1 to NT 4, one had to change the host's name via the
"Network" control panel applet; the message was accurate back then.
* Since Windows 2000, one changes the computer's host name via the
"Network Identification" (Win2000) / "Computer Name" (WinXP and above)
tab of the "System" properties Control Panel applet.
* In addition, the ony "Network" feature in the Control Panel is the
"Network Connections" special folder and doesn't deal with the host name.
- Use the ConUtils library for uniform output (on console or redirected)
of localized string resources/messages. Supersedes PR #8739.
- Improve output of last-errors by showing their description, only
falling back to showing the error number if no description exists.
95 lines
2.7 KiB
C
95 lines
2.7 KiB
C
/*
|
|
* PROJECT: ReactOS Hostname Command
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Retrieves the current DNS host name of the computer.
|
|
* COPYRIGHT: Copyright 2005 Emanuele Aliberti <ea@reactos.com>
|
|
* Copyright 2019-2026 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
#include <conutils.h>
|
|
|
|
#include "resource.h"
|
|
|
|
static VOID
|
|
PrintError(
|
|
_In_opt_ PCWSTR Message,
|
|
_In_ DWORD dwError)
|
|
{
|
|
INT Len;
|
|
|
|
if (dwError == ERROR_SUCCESS)
|
|
return;
|
|
|
|
if (IS_INTRESOURCE(Message))
|
|
ConResPuts(StdErr, PtrToUlong(Message));
|
|
else // if (Message)
|
|
ConPuts(StdErr, Message);
|
|
Len = ConMsgPuts(StdErr, FORMAT_MESSAGE_FROM_SYSTEM,
|
|
NULL, dwError, LANG_USER_DEFAULT);
|
|
if (Len <= 0) /* Fall back in case the error is not defined */
|
|
ConPrintf(StdErr, L"%lu\n", dwError);
|
|
}
|
|
|
|
int wmain(int argc, WCHAR* argv[])
|
|
{
|
|
/* Initialize the Console Standard Streams */
|
|
ConInitStdStreams();
|
|
|
|
if (argc == 1)
|
|
{
|
|
BOOL bSuccess;
|
|
WCHAR LocalHostName[256] = L""; // MAX_COMPUTERNAME_LENGTH + 1 for NetBIOS name.
|
|
DWORD HostNameSize = _countof(LocalHostName);
|
|
PWSTR HostName = LocalHostName;
|
|
|
|
/* Try to retrieve the host name using the local buffer */
|
|
bSuccess = GetComputerNameExW(ComputerNameDnsHostname, HostName, &HostNameSize);
|
|
if (!bSuccess && (GetLastError() == ERROR_MORE_DATA))
|
|
{
|
|
/* Retry with a larger buffer since the local buffer was too small */
|
|
HostName = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, HostNameSize * sizeof(WCHAR));
|
|
if (HostName)
|
|
bSuccess = GetComputerNameExW(ComputerNameDnsHostname, HostName, &HostNameSize);
|
|
}
|
|
|
|
/* Print out the host name */
|
|
if (bSuccess)
|
|
ConPrintf(StdOut, L"%s\n", HostName);
|
|
|
|
/* If a larger buffer has been allocated, free it */
|
|
if (HostName && (HostName != LocalHostName))
|
|
HeapFree(GetProcessHeap(), 0, HostName);
|
|
|
|
if (!bSuccess)
|
|
{
|
|
/* Fail in case of error */
|
|
PrintError(MAKEINTRESOURCEW(IDS_ERROR), GetLastError());
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ((_wcsicmp(argv[1], L"-s") == 0) || (_wcsicmp(argv[1], L"/s") == 0))
|
|
{
|
|
/* The program doesn't allow the user to set the host name */
|
|
ConResPuts(StdErr, IDS_NOSET);
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
/* Let the user know what the program does */
|
|
ConResPuts(StdOut, IDS_USAGE);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* EOF */
|