Skip to content

Instantly share code, notes, and snippets.

@LuisPalacios
Last active October 1, 2024 10:29
Show Gist options
  • Save LuisPalacios/d38dd10a92fa1ab6bbaec799e8afe2f3 to your computer and use it in GitHub Desktop.
Save LuisPalacios/d38dd10a92fa1ab6bbaec799e8afe2f3 to your computer and use it in GitHub Desktop.
Ejemplo de entradas en el PATH de Windows 11

Modificar PATH de Windows 11/10

PATH Global para command.com y PowerShell, desde cualquiera de estos dos sitios

  • Start > Settings > System > About > Advance System Settings
  • Search > "Advance System Settings"

El PATH se construye con la suma de las System y detrás la User variables

Environment Variables > System variables

C:\Program Files\Python312\Scripts\;
C:\Program Files\Python312\;
C:\Program Files\PowerShell\7;
C:\Windows;
C:\Windows\system32;
C:\Windows\System32\Wbem;
C:\Windows\System32\WindowsPowerShell\v1.0;
C:\Windows\System32\OpenSSH;
C:\Program Files\Git\cmd;
C:\Program Files\Git\mingw64\bin;
C:\Program Files\Git\usr\bin;
C:\Program Files\LLVM\bin;
C:\Program Files\CMake\bin;
C:\Program Files\dotnet\;
C:\Program Files\Go\bin;
C:\usr\local\bin;
C:\Program Files\starship\bin\;
C:\Program Files\Docker\Docker\resources\bin;
C:\Program Files\WireGuard\
  • Si seleccionas "Edit Text", se puede introducir en formato "path;path;path;..."

Environment Variables > User variables

%USERPROFILE%\Nextcloud\priv\bin\;
%USERPROFILE%\Nextcloud\priv\bin\win;
%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
%USERPROFILE%\AppData\Local\Programs\Microsoft VS Code\bin;
%USERPROFILE%\.dotnet\tools;
%USERPROFILE%\go\bin;
%USERPROFILE%\AppData\Roaming\Python\Python312\Scripts;
C:\Program Files (x86)\Nmap;
%USERPROFILE%\AppData\Local\Programs\Microsoft VS Code\bin;
%USERPROFILE%\AppData\Local\gitkraken\bin
  • Si seleccionas "Edit Text", se puede introducir en formato "path;path;path;..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment