“PowerShell Path” Respostas de código

Caminho de script PowerShell

# Powershel 3+
$PSScriptRoot

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

PowerShell Adicionar ao caminho Env

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

PowerShell Path


# List Paths
$Env:Path
Important Impala

Obtenha o caminho do programa PowerShell

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

Respostas semelhantes a “PowerShell Path”

Procure respostas de código populares por idioma

Procurar outros idiomas de código