1.

Solve : How to copy the text info, of a command??

Answer»

I am trying to store the information that is listed after a DOS command. Or could I send the information to a location, (i.e. “Word pad” or “clip board”) for FUTURE reference? So, what step by step would do this? I am doing this on “Win 98 SE”. I do not remember the version of “DOS” I am using. Thanks.If you're in a batch file, you use parameters. For instance, if you wanted to run DIR and save the directory SPECIFICATION in an environment variable...



dir %1
set PARAMETER=%1

To invoke the batch JOB, an example is:

TEST C:\TEMP

When it runs, PARAMETER in the environment will contain C:\TEMP
I tried what you recommended. However, that did not seem to work. What I am trying to save is the information from the following command, “ipconfig/all”. I am trying to configure my ROUTER to my laptop and desktop. Therefore, I would like to save the information to a file for further REVIEW. Maybe I just did not type the command just so. Thanks again.ipconfig/all > path\filename



Discussion

No Comment Found