Re: LEP that will quit Chrome?

2019-03-03 Thread Keith Goebel via 4D_Tech
Chip and Lutz, Delayed thanks for your ideas. I have had no luck so far, but have been pulled off that task for something else so have been unable to keep trying. Thanks anyway. Cheers, Keith ** 4D Internet Users Group (4D iNUG)

RE: LEP that will quit Chrome?

2019-03-01 Thread Epperlein, Lutz (agendo) via 4D_Tech
A correction: At least in Windows Server 2008 *R2* Powershell is pre-installed. So I think it is the same with Windows 7. > Can't speak for Windows7 for sure, but in all newer versions it is > integrated. > > > > > is powershell now (win7+ standard? Regards Lutz

RE: LEP that will quit Chrome?

2019-03-01 Thread Epperlein, Lutz (agendo) via 4D_Tech
Can't speak for Windows7 for sure, but in all newer versions it is integrated. > > is powershell now (win7+ standard? -- Lutz Epperlein -- Agendo Gesellschaft für politische Planung mbH Köpenicker Str. 9 10997 Berlin http://www.agendo.de/

RE: LEP that will quit Chrome?

2019-03-01 Thread Chip Scheide via 4D_Tech
is powershell now (win7+ standard? CHip On Fri, 1 Mar 2019 08:53:08 +, Epperlein, Lutz (agendo) via 4D_Tech wrote: > We use powershell. > In powershell you can do > > Get-Process chrome > > And if you want to kill the process: > > Get-Process chrome | Stop-Process > > Calling with LEP

RE: LEP that will quit Chrome?

2019-03-01 Thread Epperlein, Lutz (agendo) via 4D_Tech
We use powershell. In powershell you can do Get-Process chrome And if you want to kill the process: Get-Process chrome | Stop-Process Calling with LEP can do this way: $vtxtBatchName:="powershell.exe -executionpolicy remotesigned -OutputFormat Text "+\ "-File

LEP that will quit Chrome?

2019-02-28 Thread Keith Goebel via 4D_Tech
Hi all. I am trying to formulate a LEP command from 4D v17.0HF3 Win on Win7 (although it will be deployed on Win Server 2016). The idea is to quit Chrome from within 4D. After lots of Google searches I have tried (in my development version) $Command_t:="TASKKILL /IM /t chrome.exe" SET