Jump to content

WPI 7.7 & 7.5 CMD problem


Recommended Posts

I am trying both WPI 7.5 and 7.7 to run a cmd file. It shows execution is success in log file but I write some command in .cmd file which is not executed properly. If I run manually run that .cmd file all command resides in it executed properly. pls help to run CMD file successfully.

I already change install.js file to run cmd command. pls help. is it bud?

Link to comment
Share on other sites


I think you cmd-file looks like this:

setup.exe /your /args

Right?

The problem is, that the working-directory is "%WINDIR%\system32" - so your exe-files can not be found.

You can make all your path fully qualified by using %~dp0 (path to the script-directory).

So you can modify your script like this:

"%~dp0setup.exe" /your /args

or this

PUSHD "%~dp0"
setup.exe /your /args
POPD

Al

Link to comment
Share on other sites

Try it without the {CMD} tag.

Or do: cmd /c Tuneup1.cmd

Where did you find {CMD} and why did you use {CMD}?

to enable {CMD} need to change install.js flle....

OK my problem I solve out ok thanks for help.

I use PUSD and popd in CMD file.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...