标签: xml powershell replace
我试图从批处理文件中调用Powershell来替换xml文件中的[task-id type =" integer"]。这就是我正在做的事情:
powershell.exe -Command "(gc C:\temp\response.xml) -replace 'task-id type="integer"', 'task-id' | Out-File C:temp\response2.xml"
但它不起作用......
如果我删除双引号,它可以正常工作。
帮助!