Skip to main content

I am using C$SYSTEM to call the Adobe reader. Can the filename NOT have any spaces in it?

This works fine.

C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe D:\\PFIPRD\\FORMATS\\FormsandFonts.pdf

This does not. (Space after Formsand )

C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe

D:\\PFIPRD\\FORMATS\\Formsand Fonts.pdf

 

I am using C$SYSTEM to call the Adobe reader. Can the filename NOT have any spaces in it?

This works fine.

C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe D:\\PFIPRD\\FORMATS\\FormsandFonts.pdf

This does not. (Space after Formsand )

C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe

D:\\PFIPRD\\FORMATS\\Formsand Fonts.pdf

 

You have to use " " around the filename. Fx.
C:\\Users\\krh2>"C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe" "C:\\Users\\krh2\\Desktop\\DK-826208438 spec.pdf"
works for me.
/Kim

You have to use " " around the filename. Fx.
C:\\Users\\krh2>"C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe" "C:\\Users\\krh2\\Desktop\\DK-826208438 spec.pdf"
works for me.
/Kim

Does not like using multiple quotes.

Here is my statement.

MOVE "C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe D:\\PFIPRD\\Forms and Fonts.PDF" to PDF-CALL.

If I add in a quote after .exe and then before the D:\\ errors out.

 

 

 


Does not like using multiple quotes.

Here is my statement.

MOVE "C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroRd32.exe D:\\PFIPRD\\Forms and Fonts.PDF" to PDF-CALL.

If I add in a quote after .exe and then before the D:\\ errors out.

 

 

 

I tried via a command Prompt and no luck using the Quotes around it.