콘솔에 vbscript 출력


답변:


311

네 말 뜻은:

Wscript.Echo "Like this?"

wscript.exe스크립트 를 실행하면 (.vbs 확장명에 대한 기본 처리기이므로 스크립트를 두 번 클릭하면 표시되는 내용) 텍스트가 포함 된 "MessageBox"대화 상자가 나타납니다. 아래에서 실행 cscript.exe하면 콘솔 창에 출력이 표시됩니다.


1
사용자가 직접 wscript.exe를 기능에 사용할 수 있습니다 MsgBox("text")또는 MsgBox(object.property)하지만 Wscript.Echo쓰기에 용이하다. 감사.
m3nda

22
Unintuitively 나를 위해, WScript.Echo 해야한다 당신이를 통해 실행하고 있는지 여부에 사용 WScript하거나 CScript. 즉, 존재 하지CScript.Echo , 경우에 미래 명의 Google 궁금하다. ( 그러나 msgbox가 사라 졌을 때 매우 기뻤 cscript습니다. 그러나, 감사합니다.)
ruffin

1
@GabrielStaples-재고 없음 WScript.Echo. WScript에 완전히 머무르고 싶다면 다른 프로세스를 실행하여 부모 프로세스에 "SendKeys"를 수행하여 MessageBox를 닫는 것과 같은 끔찍한 일을 할 수 있다고 생각합니다.
Evan Anderson

4
실제로 방금이 popup방법을 찾았습니다 . 매우 유사 echo하지만 시간 초과를 지정하면 이후 팝업 상자가 자동으로 닫힙니다. 매우 편리하고 사용하기 쉬운 기술 : technet.microsoft.com/en-us/library/ee156593.aspx
Gabriel Staples

63

이것은 Dragon-IT Scripts and 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
악셀 켐퍼

20
@BernhardHiller의 유효 지점이 있습니다. 이 답변의 힘은 stdout을 직접 사용하면 CScript / WScript 차이를 피할 수 있다는 것입니다. 맞지 않습니다. 이 솔루션은 여전히 ​​CScript.exe에서만 작동하므로을 사용하는 것보다 큰 이점은 없습니다 WScript.Echo. 실제로는 스크립트가 더 이상 WScript에서 실행되지 않기 때문에 차이가 확대됩니다. 예를 들어 StdErr에 작성 해야하는 경우와 같은 용도로 사용되는 유효한 기술이지만이 답변의 맥락에서 오해의 소지가 있습니다.
Tim Long

3
난 그냥 이상이 방법의 장점에 불이 원하는 WScript.Echo: cscript //b foobar.vbs 실행합니다 foobar.vbs어떤 콘솔 출력없이, 그러나 통과 할 때 롭의 방법으로 당신도 출력 할 수 있습니다 \\bcscript.exe
S. 라지

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)

당신은 반드시 응답이 있습니까 실제 질문을 ?
dakab

예. ForceConsole () 만 호출 한 다음 printf ()를 사용하여 출력 콘솔에서 텍스트를 인쇄하십시오. 또한 화면을 지우고, 텍스트를 스캔하고 대기 (잠자기) 할 다른 별칭이 있습니다.
MadAntrax

1
Wscript.exe 인스턴스에서 현재 스크립트를 강제 종료 한 다음 새 cscript.exe 인스턴스를 실행하면 "ForceConsole"기능 만 중요합니다. "printf"및 나머지는 완전히 필요하지 않습니다. 현재 스크립트, 그 콘솔 인스턴스에 다음 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"

스크립트가 cscript.exe를 사용하여 시작된 경우에만 WScript.Echo가 콘솔로 출력됩니다. 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.