in reply to Accessing Network Resources When Logged Off - IIS

Your logic above is broken; if any attempt succeeds, you undo it by trying another method. If you don't care about trying a lot of possibly broken path alternatives, you could do this:
open(MENU, $bestpath ) or open(MENU, $nextbest ) or open(MENU, $worseway ) or open(MENU, $fallback ) or die "No way to reach it!"; do_stuff_with MENU; close(MENU) or die "Scary failure trying to close it!";
If you're just asking what the right syntax would be for a UNC path, it's \\netbioshost\sharename\path\to\file.ext.

--
[ e d @ h a l l e y . c c ]

Replies are listed 'Best First'.
Re^2: Accessing Network Resources When Logged Off - IIS
by bkiahg (Pilgrim) on Jun 14, 2004 at 17:45 UTC
    Those were just the different combinations I tried. I didn't use them all at the same time. Sorry for the confusion.

    Update: Thanks halley the UNC path did the trick.