On Win32 platform you can use ShellExecute() from Win32 API to run the application, e.g.:
Code:
 // hWindow is the handle of your app's window
 ShellExecute(hWindow, 'open', 'c:\Windows\cmd.exe', nil, nil,
  SW_SHOWNORMAL) ;