I have created a logon script that I use to add a network place for different drive mappings, here is a subportion of that script that will just add the network places.
Dim fs,Shell,DomainADSPath
Set Shell = WScript.CreateObject("WScript.Shell"

Set fs = Createobject("Scripting.FilesystemObject"
CreateNetworkLink "My Home Directory","\\servername\share\folder","My Home directory"
Sub CreateNetworkLink(LinkName,LinkTargetPath,LinkDescription)
'> Get the path to the Network Neighborhood special folder.
Set NetHoodfolder = fs.getfolder(Shell.SpecialFolders("NetHood"

)
Folder=NetHoodFolder &"\" &LinkName
If Fs.FolderExists(Folder)=False Then
Fs.CreateFolder(Folder)
set LinkFolder=fs.getfolder(Folder)
Linkfolder.attributes=1
End If
CreateLink Folder,"target.lnk",LinkTargetPath,LinkDescription,"",""
WriteFile Folder &"\Desktop.ini","[.ShellClassInfo]",2
WriteFile Folder &"\Desktop.ini","CLSID2={0AFACED1-E828-11D1-9187-B532F1E9575D}",8
WriteFile Folder &"\Desktop.ini","Flags=2",8
WriteFile Folder &"\Desktop.ini","ConfirmFileOp=0",8
End Sub
'Create Network Links here. The format is CreateNetworkLink LinkName,LinkTargetPath,Linkdescription
CreateNetworkLink "My New Link","\\servername\share\subfolder","My new network place"
Sub CreateNetworkLink(LinkName,LinkTargetPath,LinkDescription)
'> Get the path to the Network Neighborhood special folder.
Set NetHoodfolder = fs.getfolder(Shell.SpecialFolders("NetHood"

)
Folder=NetHoodFolder &"\" &LinkName
If Fs.FolderExists(Folder)=False Then
Fs.CreateFolder(Folder)
set LinkFolder=fs.getfolder(Folder)
Linkfolder.attributes=1
End If
CreateLink Folder,"target.lnk",LinkTargetPath,LinkDescription,"",""
WriteFile Folder &"\Desktop.ini","[.ShellClassInfo]",2
WriteFile Folder &"\Desktop.ini","CLSID2={0AFACED1-E828-11D1-9187-B532F1E9575D}",8
WriteFile Folder &"\Desktop.ini","Flags=2",8
WriteFile Folder &"\Desktop.ini","ConfirmFileOp=0",8
End Sub
'>This Subroutine Creates the Shortcut Based on the parameters sent to it.
Sub CreateLink(LinkLocation,LinkName,LinkTargetPath,LinkDescription,LinkWorkingDirectory,LinkIconLocation)
Set ShellLink = Shell.CreateShortcut(LinkLocation &"\" & LinkName)
ShellLink.TargetPath = LinkTargetPath
ShellLink.WindowStyle = 1
ShellLink.Description = LinkDescription
ShellLink.WorkingDirectory = LinkWorkingDirectory
shelllink.IconLocation = LinkIconLocation
ShellLink.Save
End Sub
'> This function writes to a file
Function WriteFile(Filename,Text,AccessType)
'Const ForWriting = 2, ForAppending=8
Dim fs, f
Set fs = CreateObject("Scripting.FileSystemObject"

Set f = fs.OpenTextFile(FileName, AccessType, true)
f.WriteLine Text
f.Close
End Function