Re: CFexecute Tag

2008-10-20 Thread Dave Watts
> Dave, the "Allow interactive with desktop" is only applicable to Local System 
> account
> while I now set CF8 Server to use an XP user account for log on, hence, can't 
> use it unless
> there's some manual approach, have you done anything like that for this 
> option?

You can set CF to run as SYSTEM again. I don't know any other way to
have CF interact with the desktop.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314172
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFexecute Tag

2008-10-20 Thread Don L
>Don,
>
>
>
>
>May be inserting a timeout parameter could be display the DOS prompt???
>
>Cheers
>Marco Antonio
>

Marco, interesting idea, tried it, now I'm getting some 'meaningful' debugging 
info,
"Timeout period expired without completion of C:\Windows\system32\cmd.exe"
I've set Timeout to 3 and 6 respectively with same problem.

Dave, the "Allow interactive with desktop" is only applicable to Local System 
account
while I now set CF8 Server to use an XP user account for log on, hence, can't 
use it unless there's some manual approach, have you done anything like that 
for this option?

Thanks, guys.

Don


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314167
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFexecute Tag

2008-10-20 Thread Web Specialist
Don,




May be inserting a timeout parameter could be display the DOS prompt???

Cheers
Marco Antonio

On Sun, Oct 19, 2008 at 7:34 PM, Don L <[EMAIL PROTECTED]> wrote:

> I don't understand why the following code, won't bring up a 'window' of
> 'DOS' command prompt on my server/local box.  OS=Windows XP; CF version=CF8
> Standard (licensed copy).
>
> 
> 
>
> No error code, no security issue.  I also try the notepad.exe with same
> outcome.
>
> What's the expected result for CFEXECUTE (last time I used it probably
> years ago...).
>
> Thanks.
>
> Chunshen Li (Don)
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFexecute Tag

2008-10-20 Thread Dave Watts
> Good thought, Mike, thank you.  So, I reset cf8 logon account to be the same 
> as XP
> logon session/account and restarted, and went a step further, disabled 
> firewalls including
> XP's own, however, same outcome (the command prompt did not show up).  What 
> else
> could be in the way?

By default, services don't interact with the desktop, even if the
service is running in the same context as the logged-in user. I'm
pretty confident you'd see the process in Task Manager, though.

To enable desktop interaction, check the "Allow service to interact
with desktop" option in the Log On tab for the service in the Services
control panel.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFexecute Tag

2008-10-20 Thread Don L
>Are you logged in to the server's console using the same credentials as
>the CF service?
>
>If the CF service is running as a different user, then it can't display
>a window in another user's session.
>
>Mike
>

Good thought, Mike, thank you.  So, I reset cf8 logon account to be the same as 
XP logon session/account and restarted, and went a step further, disabled 
firewalls including XP's own, however, same outcome (the command prompt did not 
show up).  What else could be in the way?

Don 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFexecute Tag

2008-10-20 Thread Dawson, Michael
Are you logged in to the server's console using the same credentials as
the CF service?

If the CF service is running as a different user, then it can't display
a window in another user's session.

Mike

-Original Message-
From: Don L [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 19, 2008 4:34 PM
To: cf-talk
Subject: CFexecute Tag

I don't understand why the following code, won't bring up a 'window' of
'DOS' command prompt on my server/local box.  OS=Windows XP; CF
version=CF8 Standard (licensed copy).

 

No error code, no security issue.  I also try the notepad.exe with same
outcome.

What's the expected result for CFEXECUTE (last time I used it probably
years ago...).

Thanks.

Chunshen Li (Don) 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4