batch file - cannot replace this character from a variable -


i trying remove special characters filenames

set "filename=%filename:’='%" 

this works command line not script.

just finish up, here's answer.


change codepage more supported codepage, such unicode utf-8. corresponding codepage id 65001. change this, add:

chcp 65001 

you can add snippet anywhere before set statement.


Comments

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -