- 
    
Bug
 - 
    Resolution: Unresolved
 - 
    
Major
 - 
    None
 - 
    Windows Server 2008 R2 x64, Jenkins ver. 1.415, Firefox webbrowser.
 
Hi,
I'm trying to add a target in my build nant file that executes a Windows application (WPF) process.
When jenkins arrives to this target it becomes in a freeze status and don't starts the Windows Application.
So, maybe the problem is that Jenkins can't start a WPF application. Is it possible?
The nant target is next:
<target name="test.all">
        <exec program="C:\Windows\System32\cmd.exe" workingdir="${mainfolder}">
		<arg value="/C"/>
		<arg value="TestScheduler.exe"/>
		<arg value="-all"/>
	</exec>
</target>
If i try to call this target from a batch file it finalizes successfully.
Thanks.