コンソールへのvbscript出力


回答:


311

もしかして:

Wscript.Echo "Like this?"

これをwscript.exe(.vbs拡張子のデフォルトハンドラーとして実行すると、スクリプトをダブルクリックすると表示される)、[メッセージボックス]ダイアログにテキストが表示されます。下で実行するとcscript.exe、コンソールウィンドウに出力が表示されます。


1
あなたは直接wscript.exeと機能に使用することができるMsgBox("text")MsgBox(object.property)が、Wscript.Echo書き込みに簡単です。ありがとう。
m3nda 2015

22
私にとっては直感的ではありませんが、またはのどちらを使用しているかに使用するWScript.Echo 必要あります。つまり、将来のグーグルが不思議に思う場合のために、はありません。(ただし、[で実行した場合] msgboxが削除されたことを非常に嬉しく思います。感謝します。)WScriptCScriptCScript.Echocscript
ruffin

1
@GabrielStaples-在庫なしWScript.Echo。完全にWScript内にとどまりたい場合は、別のプロセスを実行して親プロセスに "SendKeys"を実行してMessageBoxを閉じるなど、恐ろしいほどおかしなことをすることができます。
エヴァンアンダーソン

4
実際、このpopup方法を見つけました。と非常によく似てechoいますが、タイムアウトを指定してポップアップボックスを自動的に閉じることができます。非常に便利で使いやすい:technet.microsoft.com/en-us/library/ee156593.aspx
Gabriel Staples

63

これはDragon-IT ScriptsとCode Repositoryで見つかりました。

次のようにしてこれを行うことができ、cscript / wscriptの違いを避け、バッチファイルと同じコンソール出力を取得できます。これは、バッチファイルからVBSを呼び出して、シームレスに見えるようにする必要がある場合に役立ちます。

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."

5
スクリプトがダブルクリックで開始されてwscriptで開かれた場合、スクリプトは「無効なハンドルです」というエラーメッセージを表示します。
Bernhard Hiller

6
@Bernhard:wscript.exeを使用してスクリプトを実行すると、このエラーが発生します。Wscriptはウィンドウ指向であり、コンソールストリームはありません。代わりにcscript.exeを使用してください:technet.microsoft.com/en-us/library/bb490816.aspx
Axel Kemper

20
@BernhardHillerには有効なポイントがあります。この回答の主旨は、stdoutを直接使用すると、CScript / WScriptの違いを回避できることです。不正解です。このソリューションはまだCScript.exeでのみ機能するため、を使用するだけではあまりメリットがないようですWScript.Echo。実際、WScriptではスクリプトがまったく実行されなくなるため、違いは大きくなります。これは、たとえばStdErrに書き込む必要がある場合など、その用途を持つ有効な手法ですが、この回答の文脈では誤解を招きます。
Tim Long

3
私はちょうどに対するこの方法の利点アップライトにしたいWScript.Echocscript //b foobar.vbs ランfoobar.vbs任意のコンソール出力せずに、しかし、渡すときにロブの方法であなたも出力を持つことができます\\bcscript.exe
S. Razi

24

wscriptの代わりにcscriptを強制するだけです。私はいつもこのテンプレートを使います。関数ForceConsole()はvbsをcscriptに実行します。また、テキストを印刷およびスキャンするための素晴らしいエイリアスもあります。

 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)

あなたは実際の質問に答えますか?
ダカブ2015

はい、ForceConsole()を呼び出してから、printf()を使用してテキストを出力コンソールに出力します。また、あなたは明確な画面に他の別名、スキャンテキストおよび待機(スリープ)持っている
MadAntrax

1
これまでで最高のソリューションです。ありがとうございますが、「ForceConsole」関数のみが重要です。「printf」と残りは完全に不要です。Wscript.exeインスタンスで現在のスクリプトを強制的に閉じてから、新しいcscript.exeインスタンスを実行すると、現在のスクリプトの場合、Wscript.Echoはそのコンソールインスタンスに出力します...
ElektroStudios

6

私はこの投稿に出くわし、@ MadAntraxに似た、以前使用したアプローチに戻りました。

主な違いは、VBScriptのユーザー定義クラスを使用して、CScriptに切り替えてテキストをコンソールに出力するためのすべてのロジックをラップしているため、メインスクリプトが少しすっきりしています。

これは、出力をメッセージボックスに送るのではなく、コンソールに出力をストリームすることを目的としています。

cCONSOLEクラスを以下に示します。これを使用するには、スクリプトの最後に完全なクラスを含め、スクリプトの最初でインスタンス化します。次に例を示します。

    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

これが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

3

テキストをコンソールに出力する方法は5つあります。

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はコンソールに出力しますが、スクリプトがcscript.exeを使用して開始された場合のみです。wscript.exeの使用を開始すると、メッセージボックスに出力されます。

WScript.StdOut.WriteおよびWScript.StdOut.WriteLineは常にコンソールに出力されます。

StdOut.WriteおよびStdOut.WriteLineも常にコンソールに出力されます。追加のオブジェクト作成が必要ですが、WScript.Echoよりも約10%高速です。


1
...と、前の回答にコメントで述べてwscript.exeとを実行するときに、これが動作しないよう:stackoverflow.com/questions/4388879/...
maxxyme

GetStandardStream()とWScript.StdIn / .StdOut / .StdErrについての説明も見つかりました:「VBScriptの概要:デスクトップクイックリファレンス(第2版)」books.google.fr/books?id=NLpuZSatG3QCページ298に「機能的に同等」。
maxxyme
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.