Displaying 1 result from an estimated 1 matches for "announce_as_nt_workstation".
2003 Sep 30
1
announce as ... whatif? Faking Samba to be a W2k machine?
Hi,
   Quick q.  Has anyone tried this, and what's the success/failure of 
this?  Changing param/loadparm.c :
/* Types of machine we can announce as. */
#define ANNOUNCE_AS_NT_SERVER 1
#define ANNOUNCE_AS_WIN95 2
#define ANNOUNCE_AS_WFW 3
#define ANNOUNCE_AS_NT_WORKSTATION 4
static const struct enum_list enum_announce_as[] = {
         {ANNOUNCE_AS_NT_SERVER, "NT"},
         {ANNOUNCE_AS_NT_SERVER, "NT Server"},
         {ANNOUNCE_AS_NT_WORKSTATION, "NT Workstation"},
         {ANNOUNCE_AS_WIN95, "win95"},
         {ANNOUNCE_A...