I have a batch file which opens a pop-up within a website. The website opens fine, but when I want to add a parameter with a plus character, +
, it doesn't work!
The code looks like this:
@echo off
start "Chrome" chrome --app=https://website.com?phone=%1
However the %1
will be replaced with the incoming number but without the +
before it.
I don't why that happens so I tried to add a plus manually.
@echo off
start "Chrome" chrome --app=https://website.com?phone=+%1
But that doesn't work either!
Does anyone have an idea how to add the +
sign to the url?
The desired result should be:
https://website.com?phone=+3112345678