--- id: windows title: Windows sidebar_label: ⊞ Windows --- import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import Next from "./next.mdx"; ## Set up your terminal While Oh My Posh works on the standard terminal, we advise using the [Windows Terminal][wt]. :::info To display all icons, we recommend the use of a [Nerd Font][fonts]. ::: :::caution When using oh-my-posh inside the WSL, make sure to follow the [Linux][linux] installation guide. ::: Windows Store Link ## Installation Open a PowerShell prompt and run the following command: ```powershell winget install JanDeDobbeleer.OhMyPosh -s winget ``` Open a PowerShell prompt and run the following command: ```powershell scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json ``` Open a PowerShell prompt and run the following command: ```powershell Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1')) ``` This installs a couple of things: - `oh-my-posh.exe` - Windows executable - `themes` - The latest Oh My Posh [themes][themes] For the `PATH` to be reloaded, a restart of your terminal is advised. :::tip Antivirus software Due to frequent updates of Oh My Posh, Antivirus software occasionally flags it (false positive). To ensure Oh My Posh isn't blocked you can either report it to your favorite Antivirus software as false positive (e.g. [Report a false positive/negative to Microsoft for analysis][report-false-positive]) or create an exclusion for it. Exclusions should be added with the full path to the executable, you can get it with the following command from a PowerShell prompt: ```powershell (Get-Command oh-my-posh).Source ``` ::: ## Update Open a PowerShell prompt and run the following command: ```powershell winget upgrade JanDeDobbeleer.OhMyPosh -s winget ``` Open a PowerShell prompt and run the following command: ```powershell scoop update oh-my-posh ``` Open a PowerShell prompt and run the following command: ```powershell Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1')) ``` ## Default themes You can find the themes in the folder indicated by the environment variable `POSH_THEMES_PATH`. For example, you can use `oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH\jandedobbeleer.omp.json"` for the prompt initialization in PowerShell. [fonts]: /docs/installation/fonts [scoop]: https://scoop.sh/ [wt]: https://github.com/microsoft/terminal [linux]: /docs/installation/linux [themes]: /docs/themes [report-false-positive]: https://docs.microsoft.com/en-us/microsoft-365/security/defender/m365d-autoir-report-false-positives-negatives#report-a-false-positivenegative-to-microsoft-for-analysis