Help with batch file

Estevan

Newbie
Joined
May 16, 2003
Messages
667
Reaction score
0
Ok i want to make a .bat file, when i click on it it opens up a folder on my dads PC. But the folder is not part of his Shared. Can someone show me what i would need to type? Or is it even possible?
 
His folder would have to be shared. I'm not sure of the command to connect open it in a batch file, but the command is \\HisComputerName\Folder\

Assuming your on the same network.
 
it needs to be shared, and you can use the command

start \\HisComputer\Folder
 
you could also map the network location to a drive.

net use z: \\DadsPC\SharedFolder

and then z: points to the location
 
Back
Top