Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
//ComputerNamePhysicalDnsHostname used to rename the computer name and netbios name before domain join
public static bool RenameComputer(string name)
{
try
{
return SetComputerNameEx(COMPUTER_NAME_FORMAT.ComputerNamePhysicalDnsHostname, name);
}
catch (Exception)
{
return false;
}
}
C# Sample Code:
using System.Runtime.InteropServices;
Alternative Managed API:
Do you know one? Please contribute it!
class Program
{
[DllImport("kernel32.dll")]
static extern bool SetComputerName(string lpComputerName);
The Netbios function interprets and executes the specified network control block (NCB). The Netbios function is provided primarily for applications that were written for the NetBIOS interface and need to be ported to Windows. Applications not requiring compatibility with NetBIOS should use other interfaces, such as mailslots, named pipes, RPC, or distributed COM to accomplish tasks similar to those supported by NetBIOS. These other interfaces are more flexible and portable.
5/23/2014 9:41:50 AM - jonr@reedholm.com-71.114.254.154
Sets a NetBIOS or DNS name for the local computer.
2/10/2017 2:36:45 PM - -64.239.136.245
Values that specify a type of computer name, as in GetComputerNameEx and SetComputerNameEx.
3/16/2007 7:40:36 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).