I'm glad to help you with this... but I got to tell you, fixing this problem rather than putting a bandaid on it is your best bet... What if they delete this file after you create it? Anyway... not trying to preach ;\)

Using EnumNetworkDrives()
Code:
For each $Drive in EnumNetworkDrives()  
  $letter=Split($Drive,",")[0]
  $path= Split($Drive,",")[1]
  if $letter="p:"
    ? $letter + " " + $path
    ;Write this info to a text file or ini file
  endif
Next 
 
_________________________
(... better days ahead)