Problem for using WHERE

  • Thread starter Thread starter continua
  • Start date Start date
C

continua

After installin Windows XP Resource Kit, I still can not use the command WHERE.
Anybody knows the problem?
Thanks
 
continua said:
After installin Windows XP Resource Kit, I still can not use the command WHERE.
Anybody knows the problem?
Thanksr

To check if where.exe is in the path, use poor man's where ;-)
Copy in a cmd window this !one! line:

for %A in (bat cmd com exe vbs js) do @(for %B in (where.%A) do @echo.where.%A %~dp$PATH:B)

If no path appears, you should either append the folder where where.exe
resides to the path or copy where.exe to a folder included in the path.

HTH
 
In said:
After installin Windows XP Resource Kit, I still can not use the
command WHERE. Anybody knows the problem?
Thanks

Did the installation location get added to the System PATH environment
variable successfully? And did you reboot for effect?
 
Back
Top