Afficher les informations des disques (VBScript)
Le script suivant affiche une boîte de message pour chaque lecteur, avec quelques-unes de ses propriétés.
Code VisualBASIC ou VBA ou VBS (script vbs : DiskInfo_OnClick) (23 lignes)
dim objFSO, colDrives, objDrive, aff, tempaff Set objFSO = CreateObject("Scripting.FileSystemObject") Set colDrives = objFSO.Drives For Each objDrive in colDrives if (objDrive.IsReady = true) then aff = "LETTRE DU DISQUE : " & objDrive.DriveLetter & vbcrlf aff = aff & "NOM DU DISQUE : " & objDrive.VolumeName & vbcrlf aff = aff & "NUMERO DE SERIE : " & objDrive.SerialNumber & vbcrlf aff = aff & "TYPE DE DISQUE : " & objDrive.DriveType & vbcrlf aff = aff & "SYSTEME DE FICHIERS : " & objDrive.FileSystem & vbcrlf aff = aff & "PATH : " & objDrive.Path & vbcrlf aff = aff & "DOSSIER RACINE : " & objDrive.RootFolder & vbcrlf aff = aff & "ESPACE TOTAL : " & objDrive.TotalSize & vbcrlf aff = aff & "ESPACE DISPONIBLE : " & objDrive.AvailableSpace & vbcrlf if (objDrive.ShareName <> "") then aff = aff & vbcrlf & "NOM DE PARTAGE : " & objDrive.ShareName end if MsgBox aff, vbInformation, "DiskInfo(brol)" else Wscript.Echo "DISQUE " & objDrive.DriveLetter & " NON PRET" end if Next Wscript.Echo colDrives.count & " DISQUES AFFICHES"
Procédure pas à pas
La procédure présentée ici permet de tester tous les objets de la collection drive (tous les lecteurs).
suite du code
/...
Ensuite, nous devons tester la disponibilité du lecteur de disquettes et des lecteurs CD, etc.
Si le lecteur n'est pas disponible, un message est généré.
suite du code
.../
A présent, nous allons générer l'affichage des propriétés des disques qui sont disponibles. Pour cela, nous pouvons ajouter à chaque fois les données dans la variable aff que nous avons déclaré plus haut.
Nous pouvons remarquer l'emploi de vbcrlf, qui correspond à un retour chariot, pour une meilleure présentation.
aff = aff & "NOM DU DISQUE : " & objDrive.VolumeName & vbcrlf
aff = aff & "NUMERO DE SERIE : " & objDrive.SerialNumber & vbcrlf
aff = aff & "TYPE DE DISQUE : " & objDrive.DriveType & vbcrlf
aff = aff & "SYSTEME DE FICHIERS : " & objDrive.FileSystem & vbcrlf
aff = aff & "PATH : " & objDrive.Path & vbcrlf
aff = aff & "DOSSIER RACINE : " & objDrive.RootFolder & vbcrlf
aff = aff & "ESPACE TOTAL : " & objDrive.TotalSize & vbcrlf
aff = aff & "ESPACE DISPONIBLE : " & objDrive.AvailableSpace & vbcrlf
Nous pouvons en plus tester si le lecteur est un lecteur partagé. Dans le cas où il est partagé, nous allons afficher son nom de partage.
Il ne nous reste plus qu'à afficher le résultat de la variable.
A la fin, nous pouvons afficher le nombre de disques trouvés, pour déclarer que le traitement est terminé.
Afficher tous les disques en vbs sur une seule fenêtre
Voici un autre exemple, qui affiche le résultat sur une seule boîte (je n'affiche pas la totalité de l'image pour gagner un peu de place ;-) ).
Cet exemple présente de plus la particularité de faire appel à une fonction qui associera un nom au type de disque, au lieu d'une valeur.
Code VisualBASIC ou VBA ou VBS (script vbs : InfoDisk2) (38 lignes)
Sub DiskInfo Dim objFSO, colDrives, objDrive, aff, tempaff Set objFSO = CreateObject("Scripting.FileSystemObject") Set colDrives = objFSO.Drives For Each objDrive in colDrives if (objDrive.IsReady = true) then aff = aff & vbcrlf & vbcrlf & "LETTRE DU DISQUE : " & objDrive.DriveLetter & vbcrlf aff = aff & "NOM DU DISQUE : " & objDrive.VolumeName & vbcrlf aff = aff & "NUMERO DE SERIE : " & objDrive.SerialNumber & vbcrlf aff = aff & "TYPE DE DISQUE : " & DiskType (objDrive.DriveType) & vbcrlf aff = aff & "SYSTEME DE FICHIERS : " & objDrive.FileSystem & vbcrlf aff = aff & "PATH : " & objDrive.Path & vbcrlf aff = aff & "DOSSIER RACINE : " & objDrive.RootFolder & vbcrlf aff = aff & "ESPACE TOTAL : " & objDrive.TotalSize & vbcrlf aff = aff & "ESPACE DISPONIBLE : " & objDrive.AvailableSpace & vbcrlf if (objDrive.ShareName <> "") then aff = aff & vbcrlf & "NOM DE PARTAGE : " & objDrive.ShareName end if else aff = aff& vbcrlf& vbcrlf & "DISQUE " & objDrive.DriveLetter & " NON PRET" & vbcrlf aff = aff & "TYPE DE DISQUE : " & DiskType (objDrive.DriveType) end if Next Wscript.Echo colDrives.count & " DISQUES AFFICHES" & vbcrlf & aff End Sub Function DiskType (ByVal dType) Dim affType Select Case dType Case 0 : affType = "INCONNU" Case 1 : affType = "DISQUE AMOVIBLE" Case 2 : affType = "FIXE" Case 3 : affType = "DISTANT" Case 4 : affType = "CD-ROM" Case 5 : affType = "RAMDISK" End Select DiskType = affType End Function DiskInfo
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2004, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/vbs-diskinfo.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.