Instalar Powershell Version 7
--------------------------------------
$> winget search powershell
$> winget install Microsoft.Powershell
Actualizar Powershell 7
$> iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
--------------------------------------
$> winget search powershell
$> winget install Microsoft.Powershell
Actualizar Powershell 7
$> iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
Desactivar texto de inicio PowerShell
Ir Configuracion -> Setting.json
"commandline": "pwsh.exe -nologo",
"opacity": 97,
"intenseTextStyle": "all",
"centerOnLaunch":true,
Tamaño de Terminal: colum 104 Filas:25
Font: CaskaydiaCove Nerd Font
FontSize:13
Instalar iconos en PowerShell
$> Install-Module -Name Terminal-Icons -Repository PSGallery //Y
$> notepad $PROFILE
Al final de la línea agregar:
Import-Module -Name Terminal-Icons
➜➔