我编写一个控制台应用程序部署。exe运行一个批处理脚本。
Process p1 = new Process();
p1.StartInfo.FileName = AppDomain.CurrentDomain.BaseDirectory + "installer.bat";
p1.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
p1.Start();
p1.WaitForExit();
p1.Close();
the installer.bat conatins the following command. shared1listslist1.cmd
如果我运行可执行byitself成功运行。
但是我需要它运行在windows安装程序项目。所以我做了一个安装和部署项目,增加了部署。exe成功在安装自定义的动作。
It runs fine but when it starts to execute the command i get this error "The filename, directory name, or volume label syntax is incorrect". any help?