what I am trying to do is to change by a windows batch remove the last "d" from all exe with a "d" at the end. For example: [stringofwhateverlengthd.exe] to [stringofwhateverlength.exe] (notice the d is missing)
I have tried [ren *d.exe *.exe] but that does not really work. been looking around but haven't found something that parse file name like that. this can be done with many tools easily but I am looking for the windows batch solution. Thanks.
update: that worked great! thanks. Is there a way to do this while using xcopy without changing the original content of original and destination folder? for example [xcopy a\*d.exe b\*.exe]