How to start game with IS from command line?

Discussion of Inner Space

Moderators: Lavish Software Team, Moderators

Post Reply
sober
GamingTools Subscriber
Posts: 28
Joined: Thu Nov 17, 2005 8:40 pm

How to start game with IS from command line?

Post by sober » Mon Mar 13, 2006 9:21 pm

I wanna write a DOS script to launch the game with specific configuration of IS.As below:

Code: Select all

START D:\InnerSpace.exe open "World of Warcraft" "myaccount"
And my GameConfiguration.XML :

Code: Select all

	<Set Name="World of Warcraft" GUID="1610612741">
		<Setting Name="OpenGL">1</Setting>
		<Setting Name="Direct3D8">1</Setting>
		<Setting Name="Direct3D9">1</Setting>
		<Setting Name="Win32I Keyboard">1</Setting>
		<Setting Name="Win32I Mouse">1</Setting>
		<Setting Name="DirectInput8 Keyboard">1</Setting>
		<Setting Name="DirectInput8 Mouse">1</Setting>
		<Setting Name="modules">auto</Setting>
		<Setting Name="Background Mouse">1</Setting>
		<Set Name="Profiles" GUID="1610612742">
			<Set Name="myaccount" GUID="1610613201">
				<Setting Name="Executable">WoW.exe</Setting>
				<Setting Name="Parameters" />
				<Setting Name="Path">F&#58;\World of Warcraft</Setting>
				<Setting Name="Force Adapter">0</Setting>
				<Set Name="Startup Sequence" GUID="1610613402">
					<Setting Name="load isxwarden">ext isxwarden</Setting>
					<Setting Name="autologin">run autologin myaccount mypasswd</Setting>
				</Set>
				<Set Name="Pre-Startup Sequence" GUID="1610613603">
				</Set>
			</Set>
Every time I got a error message "Windows cant find the file 'open',xxxxxxx....".
Any idea ? Thanks in advance.

Lax
Owner
Posts: 6634
Joined: Fri Jun 18, 2004 6:08 pm

Post by Lax » Mon Mar 13, 2006 9:25 pm

Well, the problem here is that you're incorrectly using the pseudo-dos "START" command. The first parameter for that command is the window title, followed byt he actual program.

You actually dont want to use the start command, just make it

Code: Select all

D&#58;\InnerSpace.exe open "World of Warcraft" "myaccount"

sober
GamingTools Subscriber
Posts: 28
Joined: Thu Nov 17, 2005 8:40 pm

Post by sober » Tue Mar 14, 2006 12:28 am

Thank you very much.

Post Reply