User Tools

Site Tools


os:windows:powershell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
os:windows:powershell [2011-08-18 14:35] rootos:windows:powershell [2016-11-19 16:14] root
Line 1: Line 1:
 ====== PowerShell ====== ====== PowerShell ======
  
-== Verzeichnis temporär zu PATH-Variable hinzufügen ==+== Temporary add a directory to the PATH variable ==
  
-  $ENV:PATH += ";C:\Users\Admin\bin"+<code> 
 +$ENV:PATH += ";C:\Users\Admin\bin" 
 +</code>
  
-== Links == +== Parse integer ==
- +
-  * [[http://www.magnus.de/tabelle/formatierungsoption-fuer-f.html]]+
  
 +<code>
 +PS H:\> $x = Read-Host
 +a
 +PS H:\> [int32]::TryParse($x,[ref]0)
 +False
 +PS H:\> $x = Read-Host
 +5
 +PS H:\> [int32]::TryParse($x,[ref]0)
 +True
 +</code>
  
 == Multidimensionale Arrays == == Multidimensionale Arrays ==
os/windows/powershell.txt · Last modified: 2018-12-04 09:16 by root