Re: [NAnt-users] psExec

2009-02-10 Thread Munawar Rashid
psexec \\remotemachine -c example.exe you can put the above command in a batch file called example.bat and then run the batch file from your build file in the following way Hope it helps Munawar From: zwhee...@sddmtech.comto: nant-us...@lists.sourceforge.netdate: Tue, 10 Feb 2009 16:

Re: [NAnt-users] psExec

2009-02-10 Thread Steve Kapinos
Be aware that psexec has many limitations when used combined with other tools. For instance, while things worked mostly fine from nant, I had massive problems with it being used by nant called from java (from my build agents). I had to resort to using WMI and visual basic in many cases to work

Re: [NAnt-users] psExec

2009-02-10 Thread Chris Taylor
I've used it. I love it. nothing better than doing remote service installs or whatever you can imagine. Just have to make sure your permissions are right for the user you impersonate as. otherwise, it's the bees knees. On Tue, Feb 10, 2009 at 3:14 PM, Zachary B. Wheeler wrote: > Hi All > > >

[NAnt-users] psExec

2009-02-10 Thread Zachary B. Wheeler
Hi All I have to research psExec. Has anyone used it. I read about it but how is it used with respect to Nant ? Thanks -Zac -- Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software

Re: [NAnt-users] correct usage of depends attribute

2009-02-10 Thread ptr
Thanks a lot Gert, I didnt realize I was using NantContrib on my windows build. And depends as an attribute was separate from depends as a xml child element. Using depends as an attribute seems much faster as well. -Raj On Tue, Feb 10, 2009 at 2:15 PM, Gert Driesen wrote: > Raj, > > If you

[NAnt-users] running a batch file

2009-02-10 Thread Zachary B. Wheeler
I have a batch file that I want to run from nant; I just want it to map a drive here is my target What is wrong with this bat file? When I run it it just hangs -- Create and Deploy Rich Internet Apps outside

Re: [NAnt-users] correct usage of depends attribute

2009-02-10 Thread Gert Driesen
Raj, If you want to use the task, you need to download and install/load NAntContrib. However, most people use the depends attribute on the target element to define dependencies. The task is useful when you want to dynamically define the dependencies. Gert -Original Message- From: ptr2

[NAnt-users] correct usage of depends attribute

2009-02-10 Thread ptr2009
hey all I have a target that depends on numerous other targets. On windows this nant file works with version 0.86 beta. On MAC the build fails ( same version of nant) saying depends is unknown task. Is this project file legal ? Can "depends" be a child xml element of a target or always need t