Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eweka.nl!lightspeed.eweka.nl!194.134.4.91.MISMATCH!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.017 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:not': 0.03; '[1]:': 0.09; 'subject:How': 0.10; 'cc:addr:python-list': 0.11; 'windows': 0.15; '"cancel"': 0.16; 'changed;': 0.16; 'executed.': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'bit': 0.19; 'settings': 0.22; 'cc:addr:python.org': 0.22; 'header:User-Agent:1': 0.23; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'file': 0.32; 'charset:us-ascii': 0.36; 'files': 0.38; 'skip:- 10': 0.38; 'launch': 0.39; 'even': 0.60; 'default': 0.69; 'jul': 0.74; 'again!': 0.84; 'subject:tell': 0.84; '2013,': 0.91 Date: Thu, 4 Jul 2013 09:08:18 -0500 (CDT) From: Wayne Werner X-X-Sender: wayne@gilgamesh To: Dennis Lee Bieber Subject: Re: DOS or not? [was Re: How to tell Script to use pythonw.exe ?] In-Reply-To: <2t79t81lbf5v8aeleicalff2q167e1v849@4ax.com> References: <51D37F8A.3010905@gmail.com> <51D3D415.5060802@timgolden.me.uk> <51D3E091.6020706@gmail.com> <51D3E5F9.6010008@timgolden.me.uk> <20130703075046.2f0737de@bigbox.christie.dr> <51d424de$0$9505$c3e8da3$5496439d@news.astraweb.com> <2t79t81lbf5v8aeleicalff2q167e1v849@4ax.com> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1372946931 news.xs4all.nl 15873 [2001:888:2000:d::a6]:54906 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:49866 On Wed, 3 Jul 2013, Dennis Lee Bieber wrote: > Consider that the Powershell default is to /prevent/ execution of > script files unless some security settings have been changed; even local > script files need to be "signed" to be executed. Protip: No they don't - wrap it in a cmd/bat file and have it launch powershell[1]: powershell -ExecutionPolicy Bypass -File ... \o/ Microsoft "security" at it again! (reminds me a bit of just pushing "Cancel" to log into windows 98, I think it was) -W [1]: http://stackoverflow.com/q/728143/344286