My variable value in path is as follows
```
C:\ProgramData\Oracle\Java\javapath;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;%PYTHON_HOME%\;%PYTHON_HOME%\Scripts;C:\SQLite
```
Quand je type `echo %Path%` on invite de commandes, I get below output
```
PS C:\Users\Arun> echo %Path%
%Path%
```
Pourquoi this?
Path Environment Variable Windows 10. Echo %Path% on commande prompt shows only %Path%
Re: Path Environment Variable Windows 10. Echo %Path% on commande prompt shows only %Path%
PowerShell uses a different syntax than Windows Invite de commandes.
Use `$Env:Path` or `Get-ChildItem Env:Path` to retrieve the PATH variable.
Source: [Creating and Modifying Variables d'environnement - Microsoft Technet](https://technet.microsoft.com/en-us/library/ff730964.aspx)
Use `$Env:Path` or `Get-ChildItem Env:Path` to retrieve the PATH variable.
Source: [Creating and Modifying Variables d'environnement - Microsoft Technet](https://technet.microsoft.com/en-us/library/ff730964.aspx)