jeudi 26 avril 2018

VBS : Ou Suis je ?

Les scripts "Ou Suis je" sont très simple, ils affichent l'emplacement du script :
Ici un exemple en VBS:

Msgbox (Left(WScript.ScriptFullName, InStrRev(WScript.ScriptFullName,"\")))

En Batch:

echo Le dossier courant est : %~dp0

En PowerShell



$CurrentDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition)


Aucun commentaire:

Enregistrer un commentaire