# Profile in 'wt' (ie: regular) ``` PS> $PSVersionTable | % PSVersion | % tostring 7.1.2 PS> $profile | select * AllUsersAllHosts : C:\Program Files\PowerShell\7\profile.ps1 AllUsersCurrentHost : C:\Program Files\PowerShell\7\Microsoft.PowerShell_profile.ps1 CurrentUserAllHosts : C:\Users\\Documents\PowerShell\profile.ps1 CurrentUserCurrentHost : C:\Users\\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 PSReadLineHistoryPath : C:\Users\\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadLine\ConsoleHost_history.txt ``` # Profile in VS Code (powershell extension) ``` PS> $PSVersionTable | % PSVersion | % tostring 7.1.2 PS> $profile | select * AllUsersAllHosts : C:\Program Files\PowerShell\7\profile.ps1 AllUsersCurrentHost : C:\Program Files\PowerShell\7\Microsoft.VSCode_profile.ps1 CurrentUserAllHosts : C:\Users\\Documents\PowerShell\profile.ps1 CurrentUserCurrentHost : C:\Users\\Documents\PowerShell\Microsoft.VSCode_profile.ps1 PSReadLineHistoryPath : C:\Users\\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadLine\Visual Studio Code Host_history.txt ```