x2 won't execute a specific DOS command - [solved]

Discussion & Support for xplorer² professional

Moderators: fgagnon, nikos, Site Mods

Post Reply
paNET
Member
Member
Posts: 34
Joined: 2006 Mar 25, 20:36

x2 won't execute a specific DOS command - [solved]

Post by paNET »

I tried to define the following command in User commands dialog window:

$net start MSSQL$SQLEXPRESS  where "MSSQL$SQLEXPRESS" is the name of the service and the result is

"The service name is invalid.
More help is available ... etc.
"

because the console2 input line is changing my definition with
net start MSSQLQLEXPRESS removing $S from the service name.
How can I handle this?
Last edited by paNET on 2008 Dec 12, 22:28, edited 1 time in total.
User avatar
snakebyte
Gold Member
Gold Member
Posts: 430
Joined: 2003 May 07, 07:14
Location: Seattle
Contact:

Re: x2 won't execute a specific DOS command

Post by snakebyte »

try

Code: Select all

$net start MSSQL$$SQLEXPRESS
Use $$ to escape $
Help! I'm an AI running around in someone's universe simulator.
paNET
Member
Member
Posts: 34
Joined: 2006 Mar 25, 20:36

Post by paNET »

Thanks snakebyte! This is what I was looking for. It's working. Thanks again.
Post Reply