I have a batch file that helps me in install multiple pieces of software from a shared folder.
It's working well with software whose names don't contain spaces, but I need it to work with software does.
this code is working fine because thereis no space in the software name (firefox.exe):
for /f %%a in ('dir /s /b \\sharedfolder\*firefox*.exe') do %%a
if i trying the same code with a software that has space in the name, it's not working,
for example for /f %%a in ('dir /s /b \\sharedfolder\mozzila *firefox* 36.0.4.exe') do %%a
please look at the software name and you will understand what i meant.