End process by .bat every time it starts

0

Good morning! Whenever I start the computer the process GWX.exe (the famous process Install Win10 ) runs, going to the Task Manager and finish it.

So I created a .bat with the following command line:

@echo off
TASKKILL /F /IM "GWX.exe"

However, you still have to wait for the GWX.exe process to start and then start .bat to finish the process.

My question is, is there any command via DOS (even if it's a .bat calling another .bat) that is something like:

se processo GWX.exe estiver sendo executado então execute .bat

I look forward to returning, thank you in advance!

    
asked by anonymous 04.05.2016 / 14:16

2 answers

1

You can create a .bat command from the loop until GWX.exe is closed as

echo off

title Fecha o Arquivo GWX.exe a cada 10 seg

goto main

:main

eche Aguardando 10 Seg Para Fechar o Programa...

choice -c r -t 10 -d r >nul

taskkill -f -im GWX.exe

echo

goto main
    
06.05.2016 / 14:30
0

I do not even need 1 bat running every time I start the computer !!

The GWX .exe is the G and W indows X remove / disable :

Consider using Win10wiwi : A simple tool to disable Windows 10 upgrade and recover up to 6GB of disk space

It removes "Get Windows 10" icon, app, components, (including KB3035583). It recovers the 6GB of disk storage used by Windows 10 installation files It can disable trackers too (you know, those Windows components running on 7.8 and 10 that spy on your behavior and usage).

It can also restore previously disabled updates that would prevent user from seeing the "Get Windows 10 upgrade" icons and application.

It's named "Win10wiwi (Windows 10 when I want it). It's free. It's simple (one click). It's here: link

    
01.01.2019 / 01:42