Windows
Scripts
VBScript
Quitter un script
Pour : Windows
Comment faire pour quitter un script au beau milieu?
C'est très simple, il suffit de saisir la chaine de code "Wscript.Quit" pour sortir du script.
Dans l'exemple ci-dessous, il y aura seulement les textes "test 1", "test 2", "test 3" et "test 4" qui seront affichés.
Exemple:
wscript.echo "test 1" wscript.echo "test 2" wscript.echo "test 3" wscript.echo "test 4" '*** Sortie du script ici Wscript.Quit wscript.echo "test 5" wscript.echo "test 6" wscript.echo "test 7" wscript.echo "test 8" wscript.echo "test 9"