1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Ruta del perfil $profile # Comprobar si el perfil existe test-path $profile # Crear el fichero perfil new-item -path $profile -itemtype file -force # Añadir al fichero perfil la definición de la variable powershell_ise $profile $env:TestVariable = "Test variable" # Abrir PowerShell y ver la variable $env:TestVariable |