Wow, thank you very muchSquashman wrote: ↑26 Mar 2019 08:57Looks like this will help you.
https://productforums.google.com/forum/ ... jsGuMPWDUJ
Search found 3 matches
- 26 Mar 2019 10:17
- Forum: DOS Batch Forum
- Topic: decoding questionmark in batch
- Replies: 5
- Views: 5409
Re: decoding questionmark in batch
- 26 Mar 2019 01:21
- Forum: DOS Batch Forum
- Topic: decoding questionmark in batch
- Replies: 5
- Views: 5409
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 "?"
do you know how to push so it does not encode the "?"
- 25 Mar 2019 03:02
- Forum: DOS Batch Forum
- Topic: decoding questionmark in batch
- Replies: 5
- Views: 5409
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:/...