Defined string in Windows PATH causing error

I am adding this line C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 & MySQL Utilities 1.5\to my Windows 10 PATH environment variable. This caused a problem for PATH. I believe the main reason is the character &in the string. How can I successfully add a line to the PATH window?

+4
source share
2 answers

Try to slip away from the ampersand (&) with carrots (^).

C:\Program Files (x86)\MySQL\MySQL Fabric 1.5 ^& MySQL Utilities 1.5
+5
source

I had the same problem as you did in Windows 7 after installing MySQL 5.7.11.

, MySQL , PATH , .

BATCH. , :

echo %PATH% 

mysql, MySQL , Windows . , , Python, .

MySQL PATH . , MySQL.

+2

Source: https://habr.com/ru/post/1618829/


All Articles