incorrect command line 7 zip的相關文章
DOS batch file - not recognized as an internal command ...

DOS batch file - not recognized as an internal command ...

瀏覽:1391
日期:2025-06-29
Your problem is that you are trying to make one FOR command do the work of two. FOR processes a list of items specified by what is in the dataset thus: FOR %%V in (dataset) do bla bla bla or FOR %%V in (dataset) do ( bla bla bla bla bla bla ) In your ......看更多