Jump to content

Windows Variable


Bertman
 Share

Recommended Posts

With this script you can read all the Windows Variable. I was looking for this for a long time, but it is so damn easy. Maybe you like it !

; Path

$var = "%TEMP%\Bert Nieuwenampsen"

; Run a dos prompt and put output in text-file in the Temp directory

RunWait (@ComSpec & " /c echo " & $var & " >" & @TempDir & "\var.txt")

; Read text-file

$var = FileReadLine ( @TempDir & "\var.txt" )

; Show messagebox with the complete path

MsgBox ("", "Variable", $var)

; Delete text-file

FileDelete ( @TempDir & "\var.txt" )

Read_WinVariable.au3

Link to comment
Share on other sites

With this script you can read all the Windows Variable. I was looking for this for a long time, but it is so damn easy. Maybe you like it !

Far as I can tell that only gets the temp folder path

try:

#include <Constants.au3>
#include <Array.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
Edited by gafrost

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

Far as I can tell that only gets the temp folder path

Nope, you can get all the Windows Variable !

Like:

ALLUSERSPROFILE

APPDATA

CommonProgramFiles

COMPUTERNAME

HOMEDRIVE

HOMEPATH

ProgramFiles

SystemDrive

SystemRoot

TEMP

TMP

USERPROFILE

windir

But yeah you can use 'EnvGet ( "appdata" )' I didn't know that one :o

Link to comment
Share on other sites

Nope, you can get all the Windows Variable !

Like:

ALLUSERSPROFILE

APPDATA

CommonProgramFiles

COMPUTERNAME

HOMEDRIVE

HOMEPATH

ProgramFiles

SystemDrive

SystemRoot

TEMP

TMP

USERPROFILE

windir

But yeah you can use 'EnvGet ( "appdata" )' I didn't know that one :o

Yes I know about EnvGet, but your post was misleading the users into that the script would return all environment variables, therefore I posted a script that would do that with out having to hardcode any particular one in.

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

Hi,

@gafrost: You forget to #include<Constants.au3> in your script. (I think). Without it throws an error.

But nevertheless, always nice scripts you write! :o

So long,

Mega

Now it works, fine!

Edit: After gafrost did.

Edited by th.meger

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