up vote 0 down vote favorite
share [g+] share [fb]

I have a laptop with windows xp, connected to my wireless router. I am trying to view the shared files on the laptop with my vista desktop computer. The desktop computer is hardwired to the same router.

I can see the desktop pc fine on the xp laptop, and view the shared folders. I cannot see the xp laptop when on the desktop pc. I have tried installing the link update for xp, that is not the issue. I have also tried turning off firewalls, no dice. I have scoured google for this issue, and do not see any resolutions.

Any suggestions would be appreciated.

link|improve this question
I think this is more of a ServerFault question, I'll wait for others to comment before I retag though – Crippledsmurf Oct 3 '09 at 1:28
1  
Have you tried turning it off and on again? this is more superuser.com material. – voyager Oct 3 '09 at 1:37
very similar to this question: superuser.com/questions/33096/… – quack quixote Oct 4 '09 at 3:34
feedback

migrated from stackoverflow.com Oct 3 '09 at 1:45

This question came from our site for professional and enthusiast programmers.

5 Answers

try removing then readding the computers to the shared network

link|improve this answer
feedback

Sometimes XP Home systems may have trouble sharing to/from an XP Pro system. I don't know what to expect of an XP Home system trying to access Vista (or vice versa) or whether it makes any difference if the Vista version is Home/Premium/Ultimate/Stardestroyer.

So while you might have trouble getting the Vista computer to browse the network to the XP system, we can try a more direct approach: CMD tools. Perhaps your computers see each other from the commandline.

Try using both the computer name and IP address. Since we know the laptop (XP) can see the desktop (Vista) OK, do this on the Vista. You'll need to know the computer name and IP for the XP machine.

Start > Run > cmd (enter), then execute:

C:\> net view \\mylaptop

A successful command will list something like this:

Shared resources at \\mylaptop

MyNetwork

Share name          Type  Used as  Comment

-------------------------------------------------------------------------------
MyShare1            Disk           My Photos
MyShare2            Disk           l337 w4r3z
MyCDrom             Disk           CD-ROM
MyPrinter           Printer  
The command completed successfully.

If that doesn't work, try the IP address (get this from the laptop's wireless connection status dialog):

C:\> net view 192.168.0.2


If one of those works, then you can try to mount the share directly, like so:

C:\> net use Z: \\mylaptop\MyShare1

.. which should mount the laptop's MyShare1 share to your local Z: drive. You can do the same thing from My Computer > Tools > Map Network Drive in a more GUI fashion.

Users and permissions and passwords can be gotchas here. If you can see the computer with net view, but can't mount the drive, it's likely a permissions problem. Things to check are that each user has a password (empty passwords don't count), and if you use the same username on both machines, set their passwords to the same thing. (Not terribly secure, but this is about getting them connected. You can secure them later.)

link|improve this answer
feedback

Check for any settings on the router related to something called "Wireless Isolation" or similar. If this is switched on it prevents connections to the wireless clients but allows the wireless clients to see things on the wired network.

I think it's intended for any public wifi connection - like in a coffee shop or hotel, to prevent customers from hacking into each others laptops - but it does match the problem you're having.

link|improve this answer
feedback

Network Map in Windows Vista does not display computers that are running Windows XP (hotfix available at the link). Apparently this hotfix gets installed to the XP computer and installs the Link-Layer Topology Discovery Responder.

You need this if, "when you run Network Map on a Windows Vista-based computer, computers that are running Windows XP do not appear on the network diagram."

Credit goes to this answer on a similar question.

Of course, this is probably exactly what the OP meant when he wrote "have tried installing the link update for xp, that is not the issue"... someone teach me to read before double-posting...

link|improve this answer
feedback

Interfacing Vista and XP on a network is quite complex and many times is simply quite impossible to do in a general manner.

See this thread : Vista pc hidden from XP?

You might try to re-do on your network all that we tried in order to network Vista with XP, although we haven't been successful. It might work for you (one never knows in advance).

If everything fails, you can still try to access the machines by using their IP addresses.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown