Help me

diabonme Messages postés 2 Date d'inscription mardi 22 juillet 2008 Statut Membre Dernière intervention 3 août 2008 - 3 août 2008 à 03:36
PCPT Messages postés 13272 Date d'inscription lundi 13 décembre 2004 Statut Membre Dernière intervention 3 février 2018 - 3 août 2008 à 18:54
Bonjour à tous

Voilà, je cherche à mettre en point un script vbs qui me permettre de trouver un disque amovible puis écrire son nom (G:\, ou K:\ ou J:\) sur un fichier texte que je récupèrerai plus tard dans batch  avec une variable.

Merci de votre aide

PS : je suis un nul en vbs

3 réponses

diabonme Messages postés 2 Date d'inscription mardi 22 juillet 2008 Statut Membre Dernière intervention 3 août 2008
3 août 2008 à 11:07
Bonjour !

Pas de réponse ?
0
gillardg Messages postés 3275 Date d'inscription jeudi 3 avril 2008 Statut Membre Dernière intervention 14 septembre 2014 2
3 août 2008 à 15:11
Drives Property
Returns a Drives collection consisting of all Drive objects available on the local machine.

object.Drives

The object is always a FileSystemObject.

Remarks
Removable-media drives need not have media inserted for them to appear in the Drives collection.

You can iterate the members of the Drives collection using a For Each...Next construct as illustrated in the following code:

Function ShowDriveList
Dim fso, d, dc, s, n
Set fso = CreateObject("Scripting.FileSystemObject")
Set dc = fso.Drives
For Each d in dc
n = ""
s = s & d.DriveLetter & " - "
If d.DriveType = 3 Then
n = d.ShareName
ElseIf d.IsReady Then
n = d.VolumeName
End If
s = s & n & "
"
Next
ShowDriveList = s
End Function

http://www.activeserverpages.dk/iishelp/vbscript/html-vss/vbsTOC.htm
0
PCPT Messages postés 13272 Date d'inscription lundi 13 décembre 2004 Statut Membre Dernière intervention 3 février 2018 47
3 août 2008 à 18:54
thème topic : déplacé de VB6 vers VBS
0
Rejoignez-nous