Re: Run Python app at startup

2008-03-04 Thread SMALLp
Gabriel Genellina wrote: En Sun, 02 Mar 2008 19:37:35 -0200, SMALLp [EMAIL PROTECTED] escribi�: Hy. I create simple application. Yust an windows and compile it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ

Re: Run Python app at startup

2008-03-04 Thread Gabriel Genellina
En Tue, 04 Mar 2008 16:36:03 -0200, SMALLp [EMAIL PROTECTED] escribió: I create simple application. Yust an windows and compile it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' Program

Run Python app at startup

2008-03-02 Thread SMALLp
Hy. I create simple application. Yust an windows and compile it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' And it wont start. When i use console instead od window in py2exe i get console opend

Re: Run Python app at startup

2008-03-02 Thread dave_mikesell
On Mar 2, 3:37 pm, SMALLp [EMAIL PROTECTED] wrote: Hy. I create simple application. Yust an windows and compile it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' And it wont start. When i use

Re: Run Python app at startup

2008-03-02 Thread Gabriel Genellina
En Sun, 02 Mar 2008 19:37:35 -0200, SMALLp [EMAIL PROTECTED] escribi�: Hy. I create simple application. Yust an windows and compile it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' And