|
-
Sep 30th, 2006, 05:18 AM
#1
Thread Starter
Fanatic Member
computer access
we are having a network having 20 to 30 computers in LAN.
we can access any computer by running \\computer name\shared drive name.
but we can not access computer by running \\computer name.
some machines can get in same way but others do not get in this way ?
what will be the problem can anyone tell me ?
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
-
Oct 4th, 2006, 05:17 PM
#2
Re: computer access
What are you doing to access the computer? Are you using Windows Ecplorer? Are you trying to access a file on the computer? Can we see a line of code using "\\computer name\"?
The most difficult part of developing a program is understanding the problem.
The second most difficult part is deciding how you're going to solve the problem.
Actually writing the program (translating your solution into some computer language) is the easiest part.
Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.
Please Help Us To Save Ana
-
Oct 6th, 2006, 03:37 AM
#3
Thread Starter
Fanatic Member
Re: computer access
we have using "\\computer name" but can not access computer.error massege showing.
\\computer name "is not accessible.the network name cannot be found"
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
-
Oct 6th, 2006, 10:05 AM
#4
Re: computer access
You can't have a line of code with just "\\computer name" - HOW you're using it is important. If you don't post some example code, no one can help you.
The most difficult part of developing a program is understanding the problem.
The second most difficult part is deciding how you're going to solve the problem.
Actually writing the program (translating your solution into some computer language) is the easiest part.
Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.
Please Help Us To Save Ana
-
Oct 8th, 2006, 12:38 AM
#5
Thread Starter
Fanatic Member
Re: computer access
we are not using any programming method.
its very simple just by giving "\\" and computer name on start->run and then give enter.then it ask for connect as : and password and then when giving "enter" it gives an error as "network name can not be found"
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
-
Oct 8th, 2006, 03:34 AM
#6
Thread Starter
Fanatic Member
Re: computer access
we r having 100-150 systems in LAN some of them having win2000 prof,Xp pro and win98, we have novell server in LAN also......when we r trying to acces any other pc from one node we get access window conect as and password window, while we are giving correct password and all we get one window \\xyz is not accesible and the network name cannot found....but while trying through map network drive it can work properly for same node...but i couldnt get full access to share printer and all...but i m getting this problem on win2000 prof systems only....so plzz help us
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
-
Oct 8th, 2006, 03:36 AM
#7
Thread Starter
Fanatic Member
Re: computer access
we r having 100-150 systems in LAN some of them having win2000 prof,Xp pro and win98, we have novell server in LAN also......when we r trying to acces any other pc from one node we get access window conect as and password window, while we are giving correct password and all we get one window \\xyz is not accesible and the network name cannot found....but while trying through map network drive it can work properly for same node...but i couldnt get full access to share printer and all...but i m getting this problem on win2000 prof systems only....i m quite sure that this a virus problem .......we r having all lisence antivirus and all are updated to till date so plzz help us
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
-
Oct 9th, 2006, 03:49 PM
#8
Re: computer access
 Originally Posted by shukla
we are not using any programming method.
its very simple just by giving "\\" and computer name on start->run and then give enter.then it ask for connect as : and password and then when giving "enter" it gives an error as "network name can not be found"
From the command line all you can run is a command. You're not giving it any command, so it's giving you an error - but the error routine has an error. It's giving you the wrong error. the error should be:
"\\computername\sharename\" is not recognized as an internal or external command, operable program or batch file.
Same error as you'd get from "die C:". The reason is that the command you gave it is forced to be an executable file on \\computername\sharename\ (you can't run internal commands with a drive or share name in front), and there's no executable file on that computer named "" - which is the name you're giving it. (It should give you the error before asking for the user and pass for the computer, since the filename is illegal, but that's Microsoft for you.)
Give it
\\computername\sharename\<the name of an executable file that exists on that share>
and it should work.
but while trying through map network drive it can work properly for same node
Because C: or Z: or W: are legal 'commands' - \computername\sharename\ isn't.
but i couldnt get full access to share printer and all.
You don't access the printer on another computer from the command line, you create a printer on this computer with the wizard Control Panel/Printers and Faxes/Add Printer), telling it that the printer is a network printer. (And make sure that the printer is shared on the computer it's physically connected to.)
The most difficult part of developing a program is understanding the problem.
The second most difficult part is deciding how you're going to solve the problem.
Actually writing the program (translating your solution into some computer language) is the easiest part.
Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.
Please Help Us To Save Ana
-
Oct 10th, 2006, 12:43 AM
#9
Thread Starter
Fanatic Member
Re: computer access
but we also are unable to view all computers in one group.
WHETHER YOU SUCCEED OR FAIL IS NOT AS IMPORTANT AS WHETHER YOU TRIED YOUR BEST 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|