Vous trouverez ci-joint un script bien pratique en VBS pour "cacher" un répertoire.
Script
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder("chemin_de_mon_repertoire")
If objFolder.Attributes = objFolder.Attributes AND 2 Then
objFolder.Attributes = objFolder.Attributes XOR 2
End If
Aucun commentaire:
Enregistrer un commentaire