Tray icon

Hello, I'm using CCleaner /AUTO with my small application (c#). But I have a problem. When CCleaner starts cleaning, CC's tray icon is appearing in the tray (SS attached). And It deselects the active window.

So, How can I disable this tray icon? "Advanced menu option" is not working for my problem.

Thank you for your time.

post-66610-0-06903300-1371197375_thumb.jpg

Do you have the same problem if you un-install this un-named c# application ?

So, How can I disable this tray icon?

There currently isn't a way to disable it. What you want could be considered a feature request/suggestion so there'd be the ability to enable/disable the tray icon.

this sentence is throwing me off (and obviously @Alan_B too)

Hello, I'm using CCleaner /AUTO with my small application (c#)

could you maybe explain?

He means he's written a small application in C# (a .NET based programming language) and is programatically calling "CCleaner.exe \AUTO"

GeCe; you could try something like this to circumvent the issue you describe.

private void StartCCleanerSilent() {
System.Diagnostics.ProcessStartInfo ccleaner = new System.Diagnostics.ProcessStartInfo();
ccleaner.FileName = ("C:\\ProgramFile\\CCleaner.exe");
ccleaner.Arguments = ("\\AUTO");
ccleaner.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
ccleaner.UseShellExecute = true;
System.Diagnostics.Process.Start(ccleaner);
}

My C# is a little rusty; but something along those lines should do the trick.