User Tools

Site Tools


os:windows:powershell

This is an old revision of the document!


PowerShell

Verzeichnis temporär zu PATH-Variable hinzufügen
$ENV:PATH += ";C:\Users\Admin\bin"
Multidimensionale Arrays
PS C:\> $a = ( "a", "b", "c" ),( "d", "e", "f" )
PS C:\> $a += ,( "g", "h", "i" )
PS C:\>
PS C:\> $a[0]
a
b
c
PS C:\> $a[2]
g
h
i
PS C:\> $a[0][0]
a
PS C:\> $a[2][0]
g
PS C:\>
os/windows/powershell.1418929733.txt.gz · Last modified: 2016-09-05 23:05 (external edit)