help with command line

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I'm having trouble running a program from the command line

alzip -a c:\myfile backup.zi

When I try this I get an error saying alzip isn't recognized as an
internal/external command. If I just type alzip without the arguments the
program launches. The command should work as it's just following the generic
syntax on the website.

Any suggestions?
 
Is the -a switch valid? There is a space in the path, spaces in paths
at the command prompt have to be surrounded by quotation marks:

alzip -a "c:\myfile backup.zip"

or maybe you meant this:

alzip -a c:\myfile\backup.zip

John
 
Yes, it's a valid switch. The name after the space is actually the output
alzip -a c:\myfile.ext backup.zip

I just tried it again and it seems to have worked. I must have accidentally
put an extra space or something.

Thanks anyways :P
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top