TeamViewer sponsored session auto-close / nag screen killer

Post your working scripts, libraries and tools for AHK v1.1 and older
J-D
Posts: 2
Joined: 04 Mar 2018, 18:38

TeamViewer sponsored session auto-close / nag screen killer

04 Mar 2018, 19:06

Hello,

Newbie here!

I'm looking to prevent, or kill, the TeamViewer splash screen
that always pops up when TeamViewer is ended.

Anyone got a ready-made script I can use?

Thanks!
mylovelycat
Posts: 12
Joined: 04 Mar 2018, 09:31

Re: TeamViewer sponsored session auto-close / nag screen killer

05 Mar 2018, 05:57

Code: Select all

#SingleInstance, Force

loop,
{
	if WinExist("Title text here") 
	{
		WinKill, Title text here
		sleep 1000
	}
	sleep 100
}
J-D
Posts: 2
Joined: 04 Mar 2018, 18:38

Re: TeamViewer sponsored session auto-close / nag screen killer

05 Mar 2018, 12:23

@ mylovelycat

Thanks!

Um, how do I get the Title of the popup window?
User avatar
derz00
Posts: 497
Joined: 02 Feb 2016, 17:54
Location: Middle of the round cube
Contact:

Re: TeamViewer sponsored session auto-close / nag screen killer

05 Mar 2018, 12:30

WindowSpy
try it and see
...
Stessy
Posts: 1
Joined: 14 Mar 2019, 11:52

Re: TeamViewer sponsored session auto-close / nag screen killer

14 Mar 2019, 12:38

Hi,
if not resolved and for others if needed. You can try this :

Code: Select all

;Dependant from version and language

TeamViewer_Alert_Windows_Title := "Sessions sponsoris"
TeamViewer_Alert_Windows_Param := TeamViewer_Alert_Windows_Title . " ahk_exe TeamViewer.exe ahk_class #32770"

Loop
{
	If WinExist(TeamViewer_Alert_Windows_Param)
	{
		MsGBox, Condition Ok
		ControlClick, Button4, %TeamViewer_Alert_Windows_Param%
	}
}
Bye

Return to “Scripts and Functions (v1)”

Who is online

Users browsing this forum: No registered users and 238 guests