sortie vbscript sur la console

Quelle est la commande ou le moyen le plus rapide de générer des résultats sur la console en utilisant vbscript?

140
demandé sur armstrhb 2010-12-08 01:27:34

5 réponses

Vous voulez dire:

Wscript.Echo "Like this?"

Si vous exécutez cela sous wscript.exe (le gestionnaire par défaut pour le .extension vbs, donc ce que vous obtiendrez si vous double-cliquez sur le script) vous obtiendrez une boîte de dialogue "MessageBox"avec votre texte. Si vous exécutez cela sous cscript.exe, vous obtiendrez une sortie dans la fenêtre de votre console.

261
répondu Evan Anderson 2011-05-24 08:36:54

Je sais que c'était il y a un moment, mais peut-être que cela aidera les autres. Il a été trouvé sur Dragon-Il Scripts et référentiel de Code.

Vous pouvez le faire avec ce qui suit et rester à l'écart des différences cscript/wscript et vous permet d'obtenir la même sortie de console qu'un fichier batch. Cela peut aider si votre appel VBS à partir d'un fichier batch et ont besoin de le rendre transparent.

Set fso = CreateObject ("Scripting.FileSystemObject")
Set stdout = fso.GetStandardStream (1)
Set stderr = fso.GetStandardStream (2)
stdout.WriteLine "This will go to standard output."
stderr.WriteLine "This will go to error output."
50
répondu RLH 2016-12-07 10:17:25

Il vous suffit de forcer cscript à la place de wscript. J'ai toujours utiliser ce modèle. La fonction ForceConsole () exécutera votre vbs en cscript, vous avez également un joli alias pour imprimer et numériser du texte.

 Set oWSH = CreateObject("WScript.Shell")
 vbsInterpreter = "cscript.exe"

 Call ForceConsole()

 Function printf(txt)
    WScript.StdOut.WriteLine txt
 End Function

 Function printl(txt)
    WScript.StdOut.Write txt
 End Function

 Function scanf()
    scanf = LCase(WScript.StdIn.ReadLine)
 End Function

 Function wait(n)
    WScript.Sleep Int(n * 1000)
 End Function

 Function ForceConsole()
    If InStr(LCase(WScript.FullName), vbsInterpreter) = 0 Then
        oWSH.Run vbsInterpreter & " //NoLogo " & Chr(34) & WScript.ScriptFullName & Chr(34)
        WScript.Quit
    End If
 End Function

 Function cls()
    For i = 1 To 50
        printf ""
    Next
 End Function

 printf " _____ _ _           _____         _    _____         _     _   "
 printf "|  _  |_| |_ ___ ___|     |_ _ _ _| |  |   __|___ ___|_|___| |_ "
 printf "|     | | '_| . |   |   --| | | | . |  |__   |  _|  _| | . |  _|"
 printf "|__|__|_|_,_|___|_|_|_____|_____|___|  |_____|___|_| |_|  _|_|  "
 printf "                                                       |_|     v1.0"
 printl " Enter your name:"
 MyVar = scanf
 cls
 printf "Your name is: " & MyVar
 wait(5)
17
répondu MadAntrax 2015-08-31 15:34:55

Je suis tombé sur ce post et suis retourné à une approche que j'ai utilisée il y a quelque temps qui est similaire à celle de @MadAntrax.

La principale différence est qu'elle utilise une classe définie par L'utilisateur VBScript pour envelopper toute la logique pour passer à CScript et sortir du texte sur la console, ce qui rend le script principal un peu plus propre.

Cela suppose que votre objectif est de diffuser la sortie vers la console, plutôt que d'avoir la sortie dans les boîtes de message.

La classe cCONSOLE est ci-dessous. Utiliser incluez la classe complète à la fin de votre script, puis instanciez-la Directement au début du script. Voici un exemple:

    Option Explicit

'// Instantiate the console object, this automatically switches to CSCript if required
Dim CONS: Set CONS = New cCONSOLE

'// Now we can use the Consol object to write to and read from the console
With CONS

    '// Simply write a line
     .print "CSCRIPT Console demo script"

     '// Arguments are passed through correctly, if present
     .Print "Arg count=" & wscript.arguments.count

     '// List all the arguments on the console log
     dim ix
     for ix = 0 to wscript.arguments.count -1
        .print "Arg(" & ix & ")=" & wscript.arguments(ix)
     next

     '// Prompt for some text from the user
     dim sMsg : sMsg = .prompt( "Enter any text:" )

     '// Write out the text in a box
     .Box sMsg

     '// Pause with the message "Hit enter to continue"
     .Pause

End With     




'= =========== End of script - the cCONSOLE class code follows here

Voici le code de la classe cCONSOLE

     CLASS cCONSOLE
 '= =================================================================
 '= 
 '=    This class provides automatic switch to CScript and has methods
 '=    to write to and read from the CSCript console. It transparently
 '=    switches to CScript if the script has been started in WScript.
 '=
 '= =================================================================

    Private oOUT
    Private oIN


    Private Sub Class_Initialize()
    '= Run on creation of the cCONSOLE object, checks for cScript operation


        '= Check to make sure we are running under CScript, if not restart
        '= then run using CScript and terminate this instance.
        dim oShell
        set oShell = CreateObject("WScript.Shell")

        If InStr( LCase( WScript.FullName ), "cscript.exe" ) = 0 Then
            '= Not running under CSCRIPT

            '= Get the arguments on the command line and build an argument list
            dim ArgList, IX
            ArgList = ""

            For IX = 0 to wscript.arguments.count - 1
                '= Add the argument to the list, enclosing it in quotes
                argList = argList & " """ & wscript.arguments.item(IX) & """"
            next

            '= Now restart with CScript and terminate this instance
            oShell.Run "cscript.exe //NoLogo """ & WScript.ScriptName & """ " & arglist
            WScript.Quit

        End If

        '= Running under CScript so OK to continue
        set oShell = Nothing

        '= Save references to stdout and stdin for use with Print, Read and Prompt
        set oOUT = WScript.StdOut
        set oIN = WScript.StdIn

        '= Print out the startup box 
            StartBox
            BoxLine Wscript.ScriptName
            BoxLine "Started at " & Now()
            EndBox


    End Sub

    '= Utility methods for writing a box to the console with text in it

            Public Sub StartBox()

                Print "  " & String(73, "_") 
                Print " |" & Space(73) & "|"
            End Sub

            Public Sub BoxLine(sText)

                Print Left(" |" & Centre( sText, 74) , 75) & "|"
            End Sub

            Public Sub EndBox()
                Print " |" & String(73, "_") & "|"
                Print ""
            End Sub

            Public Sub Box(sMsg)
                StartBox
                BoxLine sMsg
                EndBox
            End Sub

    '= END OF Box utility methods


            '= Utility to center given text padded out to a certain width of text
            '= assuming font is monospaced
            Public Function Centre(sText, nWidth)
                dim iLen
                iLen = len(sText)

                '= Check for overflow
                if ilen > nwidth then Centre = sText : exit Function

                '= Calculate padding either side
                iLen = ( nWidth - iLen ) / 2

                '= Generate text with padding
                Centre = left( space(iLen) & sText & space(ilen), nWidth )
            End Function



    '= Method to write a line of text to the console
    Public Sub Print( sText )

        oOUT.WriteLine sText
    End Sub

    '= Method to prompt user input from the console with a message
    Public Function Prompt( sText )
        oOUT.Write sText
        Prompt = Read()
    End Function

    '= Method to read input from the console with no prompting
    Public Function Read()
        Read = oIN.ReadLine
    End Function

    '= Method to provide wait for n seconds
    Public Sub Wait(nSeconds)
        WScript.Sleep  nSeconds * 1000 
    End Sub

    '= Method to pause for user to continue
    Public Sub Pause
        Prompt "Hit enter to continue..."
    End Sub


 END CLASS
5
répondu JohnRC 2016-06-02 19:00:10

Il y a cinq façons de sortir du texte sur la console:

Dim StdOut : Set StdOut = CreateObject("Scripting.FileSystemObject").GetStandardStream(1)

WScript.Echo "Hello"
WScript.StdOut.Write "Hello"
WScript.StdOut.WriteLine "Hello"
Stdout.WriteLine "Hello"
Stdout.Write "Hello"

WScript.Echo sortira sur la console mais seulement si le script est démarré en utilisant cscript.EXE. Il sortira dans les boîtes de message si commencé à utiliser wscript.EXE.

WScript.La sortie standard StdOut.Ecrire et WScript.La sortie standard StdOut.WriteLine sera toujours sortie sur la console.

StdOut.Ecrire et StdOut.WriteLine sera également toujours sortie sur la console. Il nécessite une création d'objet supplémentaire, mais il est environ 10% plus rapide que WScript.Echo.

1
répondu Regis Desrosiers 2018-04-28 12:55:16