0

特定のプログラムをインストールする場所をC#で指定するにはどうすればよいですか?.WorkingDirectoryを使用してみましたが、機能しませんでした。デスクトップのNotepadFolder内にNotepad++インストーラーをインストールしたいのですが、どうすればよいですか?

    static void LaunchInstaller()
    {
        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.FileName = @"C:\Users\UserOne\Downloads\npp.6.1.5.Installer.exe";
        startInfo.WorkingDirectory = @"C:\Users\UserOne\Desktop\NotepadFolder";
        //The line above doesn't work. Notepad++ still installs to its current directory, in ProgramFiles
        startInfo.Arguments = "/S";
        Process.Start(startInfo);
    }

私はdotnetperls.comで以下のコードを見ました。彼らは2つの文字列とその引数の使用を指定しなかったので、私は今混乱しています:

static void LaunchCommandLineApp()
{
const string ex1 = "C:\\";
const string ex2 = "C:\\Dir";

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
startInfo.FileName = "dcm2jpg.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = "-f j -o \"" + ex1 + "\" -z 1.0 -s y " + ex2;

try
{
    Process exeProcess = Process.Start(startInfo)
    {
    exeProcess.WaitForExit();
    }
}
catch{}
}
4

2 に答える 2

3

これは実際にはプログラミング関連ではなく、私は閉じることに投票しています...その間に...

Nullsoft InstallSystemv2.46で作成されています。

ドキュメントを見てください。

于 2012-08-02T00:59:28.243 に答える
1

ウーフー!支出者のリンクをありがとう、私のコードは機能します!引数に/D=インストールディレクトリを追加するだけです。更新されたコードは次のとおりです。

    static void LaunchInstaller()
    {
        const string installdir = @"C:\Users\UserOne\Desktop\NotepadFolder";

        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.FileName = @"C:\Users\UserOne\Downloads\npp.6.1.5.Installer.exe";
        startInfo.Arguments = "/S /D=" + installdir; //My new code
        Process.Start(startInfo);
    }
于 2012-08-02T01:50:27.817 に答える