“Chemin PowerShell” Réponses codées

chemin de script PowerShell

# Powershel 3+
$PSScriptRoot

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

PowerShell Ajouter au chemin env

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

Chemin PowerShell


# List Paths
$Env:Path
Important Impala

Obtenir le chemin du programme PowerShell

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

Réponses similaires à “Chemin PowerShell”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code