Search found 3 matches

by Elogia
26 Mar 2019 10:17
Forum: DOS Batch Forum
Topic: decoding questionmark in batch
Replies: 5
Views: 4924

Re: decoding questionmark in batch

Squashman wrote:
26 Mar 2019 08:57
Looks like this will help you.

https://productforums.google.com/forum/ ... jsGuMPWDUJ
Wow, thank you very much :)
by Elogia
26 Mar 2019 01:21
Forum: DOS Batch Forum
Topic: decoding questionmark in batch
Replies: 5
Views: 4924

Re: decoding questionmark in batch

So if i start the script in a folder, i want it to open every index.html file and append "?clicktag=https://net.hr", so it would look like "C:/intel/Document.html?clicktag=https://net.hr" but instead it appends "%3Fclicktag=https://net.hr"
do you know how to push so it does not encode the "?"
by Elogia
25 Mar 2019 03:02
Forum: DOS Batch Forum
Topic: decoding questionmark in batch
Replies: 5
Views: 4924

decoding questionmark in batch

I made a script which opens all .html files in folder and subfolder and appends "?clicktag=https://net.hr" to it, but the questionmark gets encoded, can anyone help? @ECHO ON SET RootDir=%cd% CD /D "%RootDir%" FOR /F "TOKENS=*" %%A IN ('DIR /S /B "index.html"') DO start chrome "%%~A?clicktag=https:/...