2

I want to create a installer with many programs for a quicker windows reset. I can´t open the files i choose:

using System;
using System.Diagnostics;
using System.IO;
using System.Text;

class Test
{
    public static void Main()
    {
        Process.Start ("C:\\vlc-2.2.4-win32.msi");
    }
}

It always come this: "System.ComponentModel.Win32Exception: "The specified executable is not a valid application for this OS platform."

What´s wrong. Sorry for my bad English and grammar misstakes

1 Answers1

0

Try starting msiexec and provide the install file as a parameter.

msiexec /i {package|ProductCode}

technet

Stian
  • 1