Elsinore

User Forum

www.screenconnect.com
Welcome Guest Search | Active Topics | Log In | Register

Tag as favorite
Customize installer to hide ScreenConnect status icon?
brauscher
#1 Posted : Tuesday, February 07, 2012 4:33:09 PM
Rank: Newbie
Joined: 2/7/2012
Posts: 3
Anyone know if you can customize the installer so that the tray icon is hidden by default? Have the need for a very silent deploy.
Jake Morgan
#2 Posted : Tuesday, February 07, 2012 9:28:42 PM
Rank: Administration
Joined: 4/9/2010
Posts: 871
You can write a plugin to the guest client that will prevent the icon from being shown. A file "Plugin.cs" with these contents can be compiled with csc.exe referencing Elsinore.ScreenConnect.*.dll.

Code:

public class GuestClientInitializer : Elsinore.ScreenConnect.IInitializeItem<GuestClient>
{
    public void InitializeItem(GuestClient guestClient)
    {
        guestClient.NotifyIcon.Visible = false;
    }
}


Getting it into the MSI is a bit trickier. You'll need to shove it into Elsinore.ScreenConnect.GuestClient.msi for it to be part of every installer. Here are some guides, though nothing looks like an easy fix:

http://tekunik.blogspot....e-to-msi-with-orca.html
http://stackoverflow.com...tiny-file-inside-an-msi
http://stackoverflow.com...-file-in-a-msi-installer
haastility
#3 Posted : Thursday, February 16, 2012 3:24:20 AM
Rank: Member
Joined: 8/25/2011
Posts: 18
Location: Rochester, NY
really? can we expect this to be easier down the road? or can someone share the modified MSI?
brauscher
#4 Posted : Sunday, February 26, 2012 8:10:35 PM
Rank: Newbie
Joined: 2/7/2012
Posts: 3
no luck here, anyone managed to create an MSI we can use?
brauscher
#5 Posted : Friday, March 02, 2012 8:35:54 PM
Rank: Newbie
Joined: 2/7/2012
Posts: 3
I'm still not getting anywhere, can I get further help? how do I recompile the plugin.cs into the EXE?
Jeff Bishop
#6 Posted : Monday, March 05, 2012 8:30:23 PM
Rank: Administration
Joined: 4/14/2010
Posts: 140
Location: Raleigh, NC
It is something we would like to updates and make easier down the road. We are simply trying to find solutions that might work for users today. Brauscher, I will check with development to see if they have any ideas on recompiling for you.
ScreenConnect Team
Users browsing this topic
Guest
Tag as favorite
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.