[windows] 콘솔에 vbscript 출력

vbscript를 사용하여 콘솔에 결과를 출력하는 명령 또는 가장 빠른 방법은 무엇입니까?



답변

네 말 뜻은:

Wscript.Echo "Like this?"

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


답변

이것은 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."


답변

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)


답변

나는이 게시물을 발견하고 @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


답변

콘솔에 텍스트를 출력하는 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 % 빠릅니다.


답변