Hello Developers, I Want to disable all computer Monitoring programs like TeamViewerwhen my winform application runs and enable it when my application runs.I want to prevent my application tracking so i need this. e.g. Suppose i already connected with other user with Remote Desktop program for some work.so he/she can do all things on my system.now suppose after complete that work i forget to close remote program and i start my winform application then he can track my application.i want to prevent it.so i think to disable these type of programs on my application startup and enable on close.I hope u understand my requirement. Thanks in Advance.
You can kill TeamViewer Application this way
foreach (System.Diagnostics.Process process in System.Diagnostics.Process.GetProcesses()) { if (process.ProcessName.Contains("TeamViewer")) { process.Kill(); } }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.