Quote:
Originally Posted by rtfgnow
thank you
i got the first command to work but for the second it returns
Code:
'MatchMaker.exe' is not recognized as an internal or external command, operable program or batch file.
i got the same when i put in "win32.exe"
|
You need to be in the correct directory for the program to run.
For example, I extracted to c:\match and it created the subdirectory MatchMakerWin. Need to navigate there to get it to run.
Code:
C:\>cd c:\match
c:\match>cd matchmakerwin
c:\match\MatchMakerWin>matchmaker
or combine the first two steps to
Code:
c:\>cd c:\match\matchmakerwin
c:\match\MatchMakerWin>matchmaker
You can leave off the ".exe"
Hope that helps.