Utilizamos el Object Shell de Windows para matar la aplicación AhoraIni.exe sin mostrar mensajes de advertencia.


Código VB6:

Sub Main()
  frmAux.Descargar 'ATENCIÓN: DEBE ESTAR SIEMPRE QUE NO SE MUESTRE EL FORMULARIO.
  gcn.Desconecta
  Dim oShell
  Set oShell = CreateObject ("WScript.Shell")
  oShell.Run "taskkill /im AhoraIni.EXE"', , True
End Sub


Código C#:

using System.Windows.Forms;

namespace AhoraScriptsVacia
{
    public class Script_60 : AhoraOCX.AhoraBaseScript
    {
        public void Main()
        {
            Application.Exit();
        }
    }
}