All I would like to be able to do is list each network drive in an .ini file.
Example.. If I have 3 drives mapped J, K and L, I would like to write it to my .ini file as
network drive1=J \\server\share
netowrk drive2=K \\server\share
network drive3=L \\server\share

I'm using the fso solution to capture the mappings.
Dim $fso, $d, $dc
$fso = CreateObject("Scripting.FileSystemObject")
$dc = $fso.Drives
For Each $d In $dc
If $d.DriveType = 3
$d.DriveLetter "=" + $d.ShareName?
EndIf
Next