Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
3k views

IIS site on UNC share: is it problematic?

I am working with a legacy ASP Classic solution which is load balanced (via external hardware and has an IIS site the home directory of which is an UNC path. I've been told that the following issues ...
4
votes
1answer
189 views

How to turn on Networked Computer by using WOL (Wake on Lan) C# or Java

Can u please give me full code to turn on networked computer by WOL option of Network Card and BIOS. Please provide me all the details and please try to give me working code. Thanks
4
votes
3answers
268 views

What is the best way to get the computer name remotely based on an IP address?

I have several windows machines identified by ip address. I would like to write an application that query the computers remotely and gets their name. I cannot rely on DNS because it does not provide ...
3
votes
1answer
117 views

Is it possible that Environment.MachineName returns a zero length string

I am chasing a strange error at a customer site and was wondering if it is possible that Environment.MachineName could return a zero length string. The docs say this is read from the registry but ...
3
votes
1answer
2k views

Resolve NetBIOS name on Windows 7

According to this link, NetBIOS is no longer supported starting from Windwos Vista. Sure enough, I can no longer see any NetBIOS name from the network properties. However, when I am writing codes on ...
3
votes
2answers
3k views

How to check if a computer is responding from C#

What is the easiest way to check if a computer is alive and responding (say in ping/NetBios)? I'd like a deterministic method that I can time-limit. One solution is simple access the share ...
2
votes
3answers
949 views

NetBIOS domain of computer in PowerShell

How can I get the NetBIOS (aka 'short') domain name of the current computer from PowerShell? $ENV:USERDOMAIN displays the domain of the current user, but I want the domain that the current machine is ...
1
vote
2answers
323 views

get domain name from FQDN?

I am trying to get the NetBios name from a fully qualified Domain Name... the user inputs the FQDN and i convert to NetBios name for eg xyz.test.com (this is just an example, the FQDN an be ...
1
vote
2answers
241 views

encode Netbios name python

I would like to encode "ITSATEST" to it's netbios name value in python; The occurence table and explication are here: http://support.microsoft.com/kb/194203 I dont know how this could be done easily ...
1
vote
3answers
5k views

Translating NETBIOS domain into a FQDN (Fully Qualified Domain Name)

In short - How do I translate a NETBIOS domain to a FQDN ? Details: Assuming I'm in domain A and I have user credentials for domain B which has a trust relationship with domain A (I can authenticate ...
0
votes
0answers
29 views

Unexpected result 63 on netbios get macaddress in python

Im using this code to get the mac address in windows XP. But in other computer it gives me a RuntimeError: Unexpected result 63. What is this error means and how do i fixed it? thanks.. ncb = ...
0
votes
0answers
46 views

IIS non-NetBIOS-only Challenge - why?

Summary: Why is IIS challenging me, but only when I do not use the NetBIOS name? I have "inherited" a departed developer's machine --- you can assume it has been developer-fiddled-with! Vista, IIS ...
0
votes
1answer
63 views

How to avoid 12 seconds delay when disonnecting from share in Windows 7?

I'm making some utils that uses NetUseAdd and NetUseDel functions to connect/disconnect to share. In Windows 7 I noticed that between calling NetUseDel and real disconnnection passes nearly 12 ...
0
votes
0answers
79 views

VB Script get services remote machine not always providing array

Using the following VB Script code on a variey of Windows OS: Dim objComputer Dim computername, computerstr Dim rs, objcmd, cobj 'dim oLog, oFSO, svccnt dim arg1, args set args = WScript.Arguments ...
0
votes
1answer
57 views

Netbios support in .NET?

Does MS support Netbios in .NET or not? How can I use it?
0
votes
2answers
379 views

JCIFS, Android, and getbyname

Well, tried the following bit of code: import jcifs.netbios.NbtAddress; ... try{ NbtAddress addr = NbtAddress.getByName("Base"); }catch ...
0
votes
2answers
192 views

Regex for netbios names

I got this issue figuring out how to build a regexp for verifying a netbios name. According to the ms standard these characters are illegal \/:*?"<>| So, thats what I'm trying to detect. My regex ...
0
votes
1answer
89 views

Encode and pad netbios name using python

I'm trying to create a simple script that will convert a string (max 15 chars) to a netbios name (see http://support.microsoft.com/kb/194203) : name = sys.argv[1].upper() converted = ...
0
votes
1answer
71 views

.net 3.5: (ip2hostname) find if a certain ip is used by another computer in domain

I'm working under a domain, and im making an app that changes ip from 1 to 253 until it finds an available, unconfliced ip (where it get's ping response from the domain, it tries to ping it each time ...
0
votes
3answers
451 views

How host name is broadcasted in a subnet

I'm working with Microchip's TCP/IP stack and the host name of my device is not being broadcasted, although I can access it using its DHCP assigned IP. So the question is, what is the protocol that ...
0
votes
3answers
233 views

Mixed Windows and *nix environment - 'local' suffix issue

Stupid question - apologies in advance. I have a mixed Windows and Linux dev environment, and the server is Linux (Ubuntu). Let's say the server is called 'myserver'. I develop on both Windows and ...
0
votes
2answers
321 views

Email link to local windows resource with space

How do I encode a link in a plaintext email to a local network resource with a space in it. For instance this will only highlight up to the word "file" but not "file name" \\SERVER\share\file name ...
0
votes
1answer
1k views

Mac client can't resolve Windows Home Server name

I think this is more a Mac networking configuration issue than anything else, but am not sure. I have Subversion set up on my Windows Home Server machine (similar to this: ...
0
votes
3answers
1k views

Windows Safari cannot access sever by NetBIOS/WINS name

Whenever I try to access a NTLM authenticated intranet site, Safari takes forever to process and then comes back with "The sever is unavailable" or if allowed by the site, loads with out ...
0
votes
3answers
960 views

NetBIOS vs. FQDN

I've got an issue when accessing a web site, I can access it by using the NetBIOS name, but when accessing with the FQDN i get an error. Any ideas on how to troubleshoot this? (There is no DNS ...
-2
votes
0answers
23 views

Howto configure Ubuntu to be able to use and respond to NetBIOS hostname queries like Windows does [closed]

I am looking for a solution... UPDATE: Just fund the solution, great article: The HyRax Macrocosm » HowTo: Configure Ubuntu to be able to use and respond to NetBIOS hostname queries like ...