Per aggiungere un comando al proprio profilo per averlo sempre disponibile è sufficiente aggiungere al file C:\Users\<nomeUtente>\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
Per verificare se il file esiste

PowerShell

Test-Path $profile
se il file non esiste lo si può creare con

PowerShell

New-Item -path $profile -type file -force
e poi editarlo con notepad

PowerShell

notepad $profile 
ad esempio

PowerShell

function Get-MyProfilePath { write-host $profile }
rende disponibile la funzione Get-MyProfilePath .
chiudere e riaprire PowerShell per avere la nuova funzione
Tags:
PowerShell200 Script85
Potrebbe interessarti anche: