Go Back   The macosxhints Forums > OS X Help Requests > Networking



Reply
 
Thread Tools Rate Thread Display Modes
Old 07-10-2006, 11:02 AM   #1
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Unhappy Any way to get a PC server link clickable in OS X?

Hi all,

I work in a mixed Mac/PC environment and people send me links to items on our server all the time. Eg:

\\ServerName\products\BRANDS\Brand1\Photoshoots\girls

Problem is that these links never work after clicking them and I end up having to go to the item manually (a major pain). On a PC the link automatically activates and brings the user to the desired location (in this case, the folder "girls"), but no such luck in OS X. Also, "ServerName" would be the name of our particular server.

Just wondering if anyone has found a way to make this work? Any help would be appreciated! Using latest version of Tiger.

thanks
mike
stumbleman is offline   Reply With Quote
Old 07-10-2006, 11:29 AM   #2
Las_Vegas
League Commissioner
 
Join Date: Sep 2004
Location: Las Vegas
Posts: 5,875
Other than copying the path and replacing all the backslashes with forward slashes... No. Unfortunately, Macs and every other OS have always had to put up with PC-sentric oddities since the advent of MSDOS.
__________________
Las_Vegas

-- Ts'i mahnu uterna ot twan ot geifur hingts uto.
-- Sometimes I wonder… Why is that Frisbee getting Larger? …and then it hits me.
-- Disposable thumbs make me specialer than most animals…
Las_Vegas is offline   Reply With Quote
Old 07-10-2006, 11:37 AM   #3
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Any way to get a PC server link clickable in OS X?

Hmm... at the "Connect to server" prompt (I press apple-K form the Finder), in the box paste in:

//ServerName/products/BRANDS/Brand1/Photoshoots/girls

I tried this, and it looks like it will only go as far as the "products" folder level, and no further. No way I can get it to dig deeper?

thanks
mike
stumbleman is offline   Reply With Quote
Old 07-11-2006, 08:13 AM   #4
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Maybe I'm in the wrong forum? Is it against the rules to post this question again in 'Networking"? Please let me know.

thanks!

mike
stumbleman is offline   Reply With Quote
Old 07-11-2006, 08:19 AM   #5
tlarkin
League Commissioner
 
Join Date: Mar 2003
Location: Kansas City
Posts: 11,347
wouldn't mapping the SMB do the trick?
tlarkin is offline   Reply With Quote
Old 07-11-2006, 10:19 AM   #6
hayne
Site Admin
 
Join Date: Jan 2002
Location: Montreal
Posts: 31,956
Quote:
Originally Posted by stumbleman
Is it against the rules to post this question again in 'Networking"?

Yes - if you want your thread moved to a different section, ask a moderator.
I'll take the above as a request and move this thread to the Networking section.
__________________
hayne.net/macosx.html
hayne is offline   Reply With Quote
Old 07-11-2006, 03:39 PM   #7
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Hey tlarkin,

by mapping the SMB share, I presume you mean having it mounted? Maybe I don't know how to map a share? Even when I have the SMB share mounted on my desktop, when I click on the link it just opens the mount at the top-level but does not dig into any folders.

Any other ideas?

thanks
mike

PS Hayne, thanks for moving the post.
stumbleman is offline   Reply With Quote
Old 07-11-2006, 03:54 PM   #8
giskard22
Moderator
 
Join Date: May 2003
Posts: 4,272
Try entering smb:// in the Connect to Server box before you paste in the rest.

Note that you probably need to put your Mac in the same "workgroup" as the rest of the computers in your office. You can change this setting using Directory Access. Go into the section for "SMB/CIFS".
giskard22 is offline   Reply With Quote
Old 07-11-2006, 07:12 PM   #9
AHunter3
Hall of Famer
 
Join Date: Jan 2002
Location: New York City
Posts: 3,005
Quote:
Originally Posted by stumbleman
Hi all,

I work in a mixed Mac/PC environment and people send me links to items on our server all the time. Eg:

\\ServerName\products\BRANDS\Brand1\Photoshoots\girls

Problem is that these links never work after clicking them and I end up having to go to the item manually (a major pain).


Got FileMaker? (if not, whyever for the love of pete not?). Create a global text field, PCFilePath; create a calc field, MacifiedFilePath, defined as

Substitute(Substitute(PCFilePath, "\\", "file:///Volumes/
"), "\", "/")



...then create a script in the ScriptMaker with the single script step Open URL [no dialog, MacifiedFilePath].

(Be sure to have the PC server volume mounted on your Desktop first)
AHunter3 is offline   Reply With Quote
Old 07-11-2006, 08:23 PM   #10
SvenW
Triple-A Player
 
Join Date: Jul 2006
Location: Heidelberg, Germany
Posts: 59
Quote:
Originally Posted by AHunter3
Got FileMaker? (if not, whyever for the love of pete not?). Create a global text field, PCFilePath; create a calc field, MacifiedFilePath, defined as

Wow, Filemaker for that stuff? You could do that with some lines of applescript yourself and for free, but there is something available already:

WinShortcutter

Install it, restart and then you can select the link in your mail, use the "Application menu"/Services/Open Window Link" menu item and you are done.

Also, if you use entourage, read this as well.
SvenW is offline   Reply With Quote
Old 07-11-2006, 09:42 PM   #11
AHunter3
Hall of Famer
 
Join Date: Jan 2002
Location: New York City
Posts: 3,005
Well, I tend to use FileMaker for dang near everything. Well, not digital video editing, I suppose ...
AHunter3 is offline   Reply With Quote
Old 07-12-2006, 10:18 AM   #12
Raven
Hall of Famer
 
Join Date: Jul 2003
Location: Montreal
Posts: 4,782
With SMB it will just bring you up to the point from which you have access. The only way I've found to be able to specify a location further in the path is to hide network mounts on the desktop (to prevent confusion) and create symlinks while the drives are mounted to the exact location you wish to go to. Example:

SMB gets you to ServerName/products
Create a symplink like this while the drive is mounted via the terminal
ln -s /Volumes/ServerName/products/BRANDS/Brand1/Photoshoots/girls

Then you'd have the link on your desk and when the volume is mounted and you double click on the link it will bring you to the folder.
__________________
Waffled foreheads are a symptom of broken keyboards and inexperienced users
Raven is offline   Reply With Quote
Old 07-12-2006, 11:41 AM   #13
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Amazing! Thanks so much for the help... I followed the link to the Applescript/Entourage page and tweaked it slightly to get it to work. Only problem is Entourage does not allow me to right-click on a link in the preview pane, so have to hit "reply" then execute the script with right-click or hotkeys. Finally....

I can't believe Apple hasn't built something like this. Even more shame on Microsoft for not adding a fix... hopefully next version will fix this and the dreaded "winmail.dat" problem (not that I don't like TNEF's Enough :-)

mike
stumbleman is offline   Reply With Quote
Old 07-12-2006, 02:33 PM   #14
Las_Vegas
League Commissioner
 
Join Date: Sep 2004
Location: Las Vegas
Posts: 5,875
So… Were the girls worth all the trouble?
__________________
Las_Vegas

-- Ts'i mahnu uterna ot twan ot geifur hingts uto.
-- Sometimes I wonder… Why is that Frisbee getting Larger? …and then it hits me.
-- Disposable thumbs make me specialer than most animals…
Las_Vegas is offline   Reply With Quote
Old 07-12-2006, 02:52 PM   #15
tlarkin
League Commissioner
 
Join Date: Mar 2003
Location: Kansas City
Posts: 11,347
Quote:
Originally Posted by Las_Vegas
So… Were the girls worth all the trouble?

worth lying for, worth killing for, worth dying for, worth going to hell for

marv is awesome
tlarkin is offline   Reply With Quote
Old 07-12-2006, 04:27 PM   #16
stumbleman
Prospect
 
Join Date: Jul 2006
Posts: 7
Ha! tlarkin has that answer covered...
stumbleman is offline   Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -5. The time now is 01:52 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Site design © IDG Consumer & SMB; individuals retain copyright of their postings
but consent to the possible use of their material in other areas of IDG Consumer & SMB.