I absolutely cannot close Iobit Advanced SystemCare.

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

I absolutely cannot close Iobit Advanced SystemCare.

Post by LAPIII » 30 Jan 2023, 20:01

I tried (running the script as admin and not):

Code: Select all

#IfWinActive ahk_exe ASC.exe


x::PostMessage, 0x0112, 0xF060,,, ahk_exe ASC.exe
c::WinClose
v::winkill
b::Process,Close, ASC.exe

And even:

Code: Select all

run,%comspec% /k taskkill /F /IM ASC.exe

The output of that command was:

Cwindowssystem32cmd.exe 30_01_23 08⦂02⦂34⦂292 PM.jpg
Cwindowssystem32cmd.exe 30_01_23 08⦂02⦂34⦂292 PM.jpg (28.88 KiB) Viewed 1225 times

EDIT

This is what my Task Manager has:

Task_Manager 30_01_23 08⦂07⦂35⦂317 PM.jpg
Task_Manager 30_01_23 08⦂07⦂35⦂317 PM.jpg (13.59 KiB) Viewed 1215 times

LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by LAPIII » 31 Jan 2023, 10:10

Any ideas? I want to try dllcall keybd_events.
Last edited by LAPIII on 31 Jan 2023, 11:33, edited 2 times in total.

RussF
Posts: 1264
Joined: 05 Aug 2021, 06:36

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by RussF » 31 Jan 2023, 10:35

This is my own personal opinion, so please don't rake me over the coals, but I would just uninstall it and be done with it. I have never trusted anything from that company and if you G00gle it, you will find few others do as well. again, my own $0.02 worth.

Russ

LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by LAPIII » 31 Jan 2023, 11:39

Are these dllcall keybd_events done right:

Code: Select all

#IfWinActive ahk_exe ASC.exe
#InstallKeybdHook
1::DllCall("keybd_event", int, 0xA4, int, 38, int, 0, int, 0) ; Alt down
Sleep, 200
2::DllCall("keybd_event", int, 73, int, 3E, int, 0, int, 0) ; F4 down
Sleep, 200
3::DllCall("keybd_event", int, 0xA4, int, 38, int, 2, int, 0) ; Alt up
Sleep, 200
4::DllCall("keybd_event", int, 73, int, 3E, int, 0, int, 0) ; F4 up
return

CUsersLPIIIOneDriveDocumentsAutohotkeyAHK_ScriptsT 31_01_23 11⦂39⦂39⦂622 AM.jpg
CUsersLPIIIOneDriveDocumentsAutohotkeyAHK_ScriptsT 31_01_23 11⦂39⦂39⦂622 AM.jpg (130.61 KiB) Viewed 1151 times

swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by swagfag » 31 Jan 2023, 12:49

unironically, reformat ur entire computer and next time think twice before installing more malware from the CCP

RussF
Posts: 1264
Joined: 05 Aug 2021, 06:36

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by RussF » 31 Jan 2023, 12:57

Just G00gle "Iobit steals database" and then wonder what else they may be stealing --- from you!

Russ

LAPIII
Posts: 668
Joined: 01 Aug 2021, 06:01

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by LAPIII » 31 Jan 2023, 14:53

The following works, but I wanted to close it when it's the active window:

Code: Select all

#IfWinexists ahk_exe asc.exe
w::

If !(A_IsAdmin)
    {
	Run, *RunAs %comspec% /k taskkill /F /IM asc.exe
	}
return


User avatar
mikeyww
Posts: 26885
Joined: 09 Sep 2014, 18:38

Re: I absolutely cannot close Iobit Advanced SystemCare.

Post by mikeyww » 31 Jan 2023, 19:10

Just an unrelated aside, this could provide greater motivation to use AHK v2!

Code: Select all

#Requires AutoHotkey v1.1.33
#IfWinExistskkkkk ahk_exe notepad.exe
F3::msgbox Test

Code: Select all

#Requires AutoHotkey v1.1.33
#SingleInstance
pName := "notepad"
Loop {
 WinWait ahk_exe %pName%.exe
 Run *RunAs %ComSpec% /c taskkill /F /IM %pName%.exe,, Hide
 SoundBeep 1500
}
But, hey, if the idea is to kill this process whenever its window appears, you might as well just uninstall the whole thing.

Post Reply

Return to “Ask for Help (v1)”