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 función powershell_ise $profile function prueba{"hola"} # Abrir PowerShell y ejecutar la función prueba |