Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So typically I am too stubborn to use forum sites myself (call me proud), but this has been driving me absolutely mad.

My goal is simply to start Chrome on a server machine, through that server's python WSGI script. I am aware of the bug that prevents Python from using Popen under WSGI, but I've figured out what seemed like a workable (albeit somewhat hack-y) solution: instead of calling Popen with the actual command, I created a .bat and called the bat through Popen with the shell argument set to True. This actually works for just about everything other than what I needed it to; i.e., calling start iexplore worked, start firefox worked, even notepad and mspaint, but the only thing that didn't work, was calling start chrome. I've even tried a few command-line arguments, like start chrome --single-process, but to no avial.

It's like Windows just hates Chrome. I would greatly appreciate any help, as I've been pulling my hair out over this for the last 48 hours.

tl;dr: Chrome won't start from a batch script called using subprocess.Popen, but everything else will.


Relevant Technical Stuff

Python script [excerpt]:

import subprocess
command="<path>\\start-browser.bat" # Absolute path to Batch file
subprocess.Popen(command,shell=True)

Batch file:

start /d "C:\Documents and Settings\<Me>\Local Settings\Application Data\Google\Chrome\Application" chrome.exe

System:

  • Windows XP sp3, 32-bit
  • Python 2.7
  • Apache 2.2
share|improve this question

1 Answer

up vote 1 down vote accepted

I haven't tried this in your case, but I know a lot of Chrome's oddities come about because it is installed per user. Have you tried logging in as Administrator and installing Chrome for all users?

share|improve this answer
Yes!! That worked! In fact, I can open it directly with cmd /c start chrome <url>. Now, another (less important) problem appears: it doesn't open in the same window as the current one open. I'm assuming its because my subprocesses from Apache are running as System. Is there any fix for this? – shmunkyman33 May 30 '12 at 4:46
Also, it seems that the default browser for the System user is always IE, despite the default for my actual user. Is there a way to change this? – shmunkyman33 May 30 '12 at 4:50
I'd try using the RUNAS command to run Chrome as a different user from System technet.microsoft.com/en-us/library/bb490994.aspx – Dave Webb May 30 '12 at 5:03
I'm trying to use runas but running into some problems. First, I can't login everytime the server gets a request, and I'm not going to save my user password in a text file. So I created a User named "apache" with limited permissions, but now Chrome is opening with an error. – shmunkyman33 May 30 '12 at 5:34
There's the /savecred option to runas but I have no idea how secure that is. – Dave Webb May 30 '12 at 5:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.