Jump to content

How to do a simple Echo to screen?


Recommended Posts

How about

Run(@ComSpec & " /k " & 'echo "Is this what you want"', "")


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Hi,

what about?

#include <Array.au3>
#include<Constants.au3>

Dim $env_vars[1][2], $temp_line = "", $temp_env
$foo = Run(@ComSpec & " /c set", "", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)

While 1
    $line = StdoutRead($foo)
    If @error = -1 Then ExitLoop
     $temp_line = $temp_line & $line
Wend

$temp_env = StringSplit($temp_line, @CRLF, 1)

; clean out any empty lines
For $x = $temp_env[0] To 1 Step -1
    If $temp_env[$x] = @LF Or $temp_env[$x] = @CR Or Not StringLen($temp_env[$x]) Then
        _ArrayDelete($temp_env,$x)
        $temp_env[0] = $temp_env[0] - 1
    EndIf
Next

ReDim $env_vars[$temp_env[0]][2]

For $x = 1 To $temp_env[0]
    $temp_line = StringSplit($temp_env[$x],"=")
    $env_vars[$x - 1][0] = $temp_line[1]
    $env_vars[$x - 1][1] = $temp_line[2]
Next

For $x = 0 To UBound($env_vars) - 1
    $lResult = MsgBox(1, $env_vars[$x][0], $env_vars[$x][1])
    Switch $lResult
        Case 1; ok
        Case 2; cancel
            ExitLoop
    EndSwitch
Next

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...