Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Naftali
On Friday, June 19, 2015 at 1:25:12 PM UTC-4, Naftali wrote: > It actually doesn't fail but it 'cannot open in protected mode' (see here > http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > > I am using subprocess

Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Naftali
On Friday, June 19, 2015 at 1:25:12 PM UTC-4, Naftali wrote: > It actually doesn't fail but it 'cannot open in protected mode' (see here > http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > > I am using subprocess

Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Laura Creighton
I think that your problem is that you have Protected Mode enabled. If you do, you either have to disable that, or write a policy config file. https://www.adobe.com/devnet-docs/acrobatetk/tools/AppSec/protectedmode.html says. From: Policy configuration Protected mode prevents a number of actions

Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Naftali
On Friday, June 19, 2015 at 1:25:12 PM UTC-4, Naftali wrote: > It actually doesn't fail but it 'cannot open in protected mode' (see here > http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > > I am using subprocess

Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Robin Becker
On 22/06/2015 11:33, Robin Becker wrote: . Naftali, I ran the following from python prompt for what it's worth this also works on my machine Windows PowerShell Copyright (C) 2009 Microsoft Corporation. All rights reserved. PS C:\Users\rptlab> cd tmp PS C:\Users\rptlab\tm

Re: Opening PDF Using subprocess.Popen Failing

2015-06-22 Thread Robin Becker
. Naftali, I ran the following from python prompt import os os.system('"C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" /n thello.pdf') and this worked as did import subprocess subprocess.Popen(['C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe','/n','thello

Re: Opening PDF Using subprocess.Popen Failing

2015-06-20 Thread Naftali
On Friday, June 19, 2015 at 1:25:12 PM UTC-4, Naftali wrote: > It actually doesn't fail but it 'cannot open in protected mode' (see here > http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > > I am using subprocess

Re: Opening PDF Using subprocess.Popen Failing

2015-06-19 Thread Naftali
On Friday, June 19, 2015 at 1:25:12 PM UTC-4, Naftali wrote: > It actually doesn't fail but it 'cannot open in protected mode' (see here > http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > > I am using subprocess

Re: Opening PDF Using subprocess.Popen Failing

2015-06-19 Thread Laura Creighton
In a message of Fri, 19 Jun 2015 10:24:56 -0700, Naftali writes: >It actually doesn't fail but it 'cannot open in protected mode' (see here >http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) > >I am using subprocess

Opening PDF Using subprocess.Popen Failing

2015-06-19 Thread Naftali
It actually doesn't fail but it 'cannot open in protected mode' (see here http://blogs.adobe.com/dmcmahon/2012/07/27/adobe-reader-cannot-open-protected-mode-due-to-a-problem-with-your-system-configuration/) I am using subprocess.Popen("AcroRe32.exe /n ") which is the actuall adobe reader command