I have an xml file with the following:
<setParameter value="\\deveserver\d$\Websites\anime" name="IIS Web Application Name"/>
I want to write a batch script that will search for this \\deveserver\d$\Websites\anime string (which is saved in a variable, called CurrentFolder) and replace it with whatever input that was entered.
I saved the entered path in variable, DestinationFolder
SET DestinationFldr=
SET /p DestinationFldr=Enter Destination path:
Any replace and text posts that I checked doesn't seem to work. I think it's not able to recognize the double backslash. Please help. Thanks.