“PowerShell -Pfad” Code-Antworten

PowerShell -Skriptpfad

# Powershel 3+
$PSScriptRoot

# Powershell 2-
$scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
Tukusej’s Sirs

PowerShell ergänzen den Env -Pfad

$env:Path = "SomeRandomPath";             (replaces existing path) 
$env:Path += ";SomeRandomPath"            (appends to existing path)
baruchiro

PowerShell -Pfad


# List Paths
$Env:Path
Important Impala

Holen Sie sich Programmpfad PowerShell

(get-command notepad.exe).Path
Yucky Yacare

Ähnliche Antworten wie “PowerShell -Pfad”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen