Desktop Functions: Smart Device Functions:
|
Search Results for "NetValidateName" in [All]netapi32
static extern UInt32 NetValidateName(string lpServer,string lpName, string lpAccount,string lpPassword, int NameType);
static extern UInt32 NetValidateName(string lpServer,string lpName, string lpAccount,string lpPassword, NET_SETUP_NAMETYPE NameType);
public static extern UInt32 NetValidateName(string lpServer,string lpName,string lpAccount,string lpPassword,
public static extern UInt32 NetValidateName(string lpServer,string lpName, string lpAccount,string lpPassword, int NameType);
UInt32 rtn = NetValidateName(null, "jrich523.wordpress.com", null, null, 3);
public static extern UInt32 NetValidateName(string lpServer,string lpName,string lpAccount,string lpPassword,
[NetworkUtil]::NetValidateName($null,$name,$null,$null,$NameType) |