Marcus Franke <(E-Mail Removed)> wrote:
> Hello,
>
> I have a logon script that connects three network shares on startup.
>
> There is one user with the problem that the script is failing every
> second or third boot.
>
> I'd like to tweak the script in the way like:
>
> if f:\ != isConnected:
> net use f: \\server\share /persistent:no
>
> Is this possible? I'd like to enable the user to rerun the script
> at any given time without having to disconnect the one or two
> shares that might be working.
>
>
> regards,
> Marcus
if not exist f: net use f: \\server\share /persistent:no
....but it would probably help if you were to provide details of the script
failing to work - more symptoms, etc.
|