LOL... figured it out.
Because of the example in the documentation, I thought (weirdly) that I needed to include REM in front of the commands for F9 for whatever reason... well, if it's literally just the DOS command to REMark (comment) obviously I'll remove them, and BAM! Works fine.
Silly me, taking things too literally: "Oh! That must be some sort of special F9 way to run DOS commands!" haha
Thanks for offering to help me debug!
Dan
> Odd. I’ll try and set up a test here over the weekend and se what
> I get…
>
> > And yet... I do! (scratches head)
> >
> > > That would seem to indicate you don't have a file tagged when you
> > > run it...
> > >
> > > > Thanks! I missed that!
> > > >
> > > > So I added the GOTO statement, but it still goes to the
> "requires
> > > > tagged files" statement.
> > > >
> > > > Is there something wrong with the way I'm setting up the Tagged
> > file
> > > > condition?
> > > >
> > > > Here's the full (updated) script:
> > > >
> > > > SET ZTTagged=False
> > > > REM #ZTIfTagged SET ZTTagged=True
> > > > IF [%%ZTTagged%%]==[False] GOTO Err_NoTag
> > > > REM mkdir %4
> > > > REM C:\Users\dx7668\Documents\ztw\pkzipc.exe -extract %1
> > .\%4
> > > > GOTO End
> > > > :Err_NoTag
> > > > ECHO This menu item requires tagged files to operate
> > > > Pause
> > > > :End
> > > > Pause
> > > >