msnews.microsoft.com said:
I have windows 2000 server with xp clients.
All of a sudden, xp clients keep loosing map drives and they have to reboot.
Any suggestion ?
Thanks
As indicated by others, something surely changed.
Since it's several machines, I would also guess the
DNS server settings are the reason.
That said, the simplest workaround is to create batch
files that map and unmap drives.
The command to unmap a drive is:
NET USE * /DELETE
The command to map a drive is:
NET USE Z: \\server\share /persistent:no
Replacing the drive letter, server name, and share
name appropriately. Specifying /perstent:no tells
windows not to try to remember the drive mappings,
which your systems seem to have a problem with.
If people's drives become unmapped, they can restore
them by running the batch file. You probably also
want to tell them to unmap the drives in explorer
as well. Mapping this way (non-persistent) sometimes
fails if windows is trying to restore a persistent
share.