borradores

.. title: powershell .. slug: powershell .. date: 2023-10-29 14:03:28 UTC-03:00 .. tags: pwsh powershell .. category: cli .. link: .. description: .. type: text

Obtener ayuda

Get-Help

Listar contenidos de un directorio

Get-ChildItem 

Leer contenido de un archivo

Get-Content

Importar / Exportar de formatos de texto

ConvertFrom-Csv
ConvertFrom-Json
ConvertTo-Csv
ConvertTo-Json

##

Verificar si un archivo existe

Test-Path

Crear un nuevo path

Join-Path

Obtener path del ejecutable de un comando

Get-Command

Listar aliases de un comando

Get-Alias

Cambiar la unicación

Set-Location

Agregar ubicación al stack

Push-Location

Cambiar ubicación al elemento más reciente del stack

Pop-Location

TODO

Invoke-Item
Invoke-Expression
Invoke-WebRequest
Start-Process
Set-Clipboard