Hei!
The ampersand "&" is very often used in programming languages. In the commandline the "&" is used to separate multiple commands on one command line. Cmd.exe runs the first command, and then the second command.
But there is a way to "escape" this function:
You have to add an "^" before the "&". So your path, that you have to write, would be something like this: "C:\Users\J^&J"
Martin
The ampersand "&" is very often used in programming languages. In the commandline the "&" is used to separate multiple commands on one command line. Cmd.exe runs the first command, and then the second command.
But there is a way to "escape" this function:
You have to add an "^" before the "&". So your path, that you have to write, would be something like this: "C:\Users\J^&J"
Martin