Adobe Reader Command Line Reference

前端 未结 5 1850
你的背包
你的背包 2020-11-22 13:08

Is there any official command line (switches) reference for the different versions of
Adobe (formerly Acrobat) Reader?

I didn\'t find anything on Adobe

5条回答
  •  臣服心动
    2020-11-22 13:32

    Having /A without additional parameters other than the filename didn't work for me, but the following code worked fine with /n

    string sfile = @".\help\delta-pqca-400-100-300-fc4-user-manual.pdf";
    Process myProcess = new Process();
    myProcess.StartInfo.FileName = "AcroRd32.exe"; 
    myProcess.StartInfo.Arguments = " /n " + "\"" + sfile + "\"";
    myProcess.Start();
    

提交回复
热议问题