VBScript - Afficher quelques informations de son PC
Sommaire
I- Introduction
Bonjour à toutes et à tous.
Ce petit script vous permet de visualiser quelques informations sur votre PC. Voici le liste de ces informations :
- Le Domaine.
- Le Nom Netbios de l’ordinateur.
- L’utilisateur actuellement connecté (la session ouverte).
- L’adresse MAC.
- L’adresse IP de la machine.
Informations :
II- Script
Ouvrez le célèbre Bloc-Note et copiez/collez ce script.
- Code : Tout sélectionner
- set wshnetwork=wscript.createobject("wscript.network")
- strComputer = "."
- Set objWMIService = GetObject("winmgmts:\\"& strComputer & "\root\cimv2")
- Set colAdapters = objWMIService.ExecQuery _
- ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = True")
- n = 1
- For Each objAdapter in colAdapters
- msgbox "Domaine : " &wshnetwork.userdomain & vbcr & vbcr &"Nom de l'ordinateur: " &wshnetwork.computername & vbcr & vbcr &"Utilisateur Connecté: " &wshnetwork.username & vbcr & vbcr &"Adresse MAC: " & objAdapter.MACAddress & vbcr& vbcr & "Adresse IP: " & objAdapter.IPAddress(i)
- next
Enregistrez au format .vbs, et double-cliquez sur le script afin d’afficher les quelques informations de votre ordinateur.
darky.