for($i=1;$i -le 10; $i++) {
Invoke-WebRequest -Uri 'http://localhost:3000/'Write-Host
}
Un mundo donde lo importante es la opiniòn...
for($i=1;$i -le 10; $i++) {
Invoke-WebRequest -Uri 'http://localhost:3000/'Comando con administador en Power Shell
Install-WindowsFeature -name Telnet-Client
https://learn.microsoft.com/es-es/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed
Terminal de linea de comandos: POWER SHELL:
dotnet --list-sdks
dotnet --list-runtimes
https://www.enmimaquinafunciona.com/pregunta/100025/eliminar-el-texto-despues-del-signo
Eliminar el Enlace Simbólico Existente:
java.exe
.Crear un Nuevo Enlace Simbólico:
cd
para cambiar de directorio."C:\Program Files\Common Files\Oracle\Java\javapath"
mklink
. Por ejemplo, si deseas apuntar a la versión 11 de Java, podrías hacer algo como:mklink java.exe "C:\Program Files\Java\jdk-11.x.x\bin\java.exe"
javac.exe
, si es necesario.Verificar el Cambio:
java -version
para asegurarte de que la versión correcta de Java se está utilizando.Instalación de la CLI de Azure para Windows | Microsoft Learn
32 BITS
https://aka.ms/installazurecliwindows
64 BITS
https://aka.ms/installazurecliwindowsx64
az login --tenant 75fb3a5b-2add-4c27-8dfd-1e8d7a8166ff
VIDEO:
https://www.youtube.com/watch?v=yGWpKw059E4
# change the active subscription using the subscription name az account set --subscription "My Demos" # change the active subscription using the subscription ID az account set --subscription "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # change the active subscription using a variable subscriptionId="$(az account list --query "[?name=='my case sensitive subscription full name'].id" --output tsv)" az account set --subscription $subscriptionId
https://learn.microsoft.com/es-es/cli/azure/manage-azure-subscriptions-azure-cli
Instalar open SSL en Windows 10
https://www.ssl.com/es/c%C3%B3mo/instalar-openssl-en-windows-con-cygwin/
openssl genrsa -out clave_privada.pem 3072
openssl rsa -in clave_privada.pem -pubout -out clave_publica.pem
Fuente:
https://parzibyte.me/blog/2022/11/24/generar-par-claves-rsa-openssl-privada-publica/