Welcome to the ConnectWise Control Feature Request Portal

If you do not have an account, click "Sign in/ Sign up" to get started.


Tips

  • Search for an existing improvement or feature request before adding your own. This helps us prevent duplicate entries and track all suggestions.
  • If you find a matching request, give it a thumbs up and throw in a comment.
  • If you can't find a request for an item you need, create your own request. Provide as many details as you can, especially regarding possible use cases.

Rules

  • No spam, advertising, or self-promotion.
  • No offensive posts, links, or images.
  • Only one request per post.
  • Administrators have the ability to moderate the forums, including editing, deleting, and moving posts. Posts may be deleted for any reason, with or without notification.

Thank you for sharing your thoughts with us!

0
Pending Review

Update CustomPRoperty1

michael_burgess 1 month ago 0

Update CustomPRoperty1 without using the web portal or creating duplicates by reinstalling the client.

0
Pending Review

Make older versions of ScreenConnect client available to connect

Ian L-F 2 months ago 0

it would be nice for legacy and compatibility reasons to have older versions of ScreenConnect available for client installation.

0
Pending Review

For ScreenConnect, I'd love for the ability to track installers and invalidate old ones.

Ian L-F 2 months ago 0

We should be able to invalidate installers up to 'today's date' to prevent ones that have gone rogue for one reason or another from populating our dashboards with dead hosts.

0
Pending Review

Portrait/Vertical Display Makes In-Session Quality/Zoom+ Options Unreachable

Wesley123 2 months ago 0

A portrait monitor or vertical display will overflow in the top bar "View" section making the "Quality", "Zoom", and "logon session" controls unreachable. 

My example resolution: 800x1280

Issue:

Image 1242

Missing controls:

Image 1241

0
Pending Review

Oauth for Email Notifications Configuration

Christopher Roble 2 months ago updated by nathan levandowski 2 months ago 1

Google is phasing out "less secure authentication" so Oauth is needed to allow the server to send email via a google workspace account. https://support.google.com/accounts/answer/6010255?hl=en


Can this method be added to the email configuration tab?

I have SAML set up, but if setting up Oauth then allows me to send emails with that email address please let me know?

0
Pending Review

Subgroups by using the IIF expressions

Tom A1 2 months ago 0

I'm trying to organise my ScreenConnect Subgroups by using the expressions but on the true statement I'm unable to achieve what I'm after

IIF (GuestOperatingSystemName LIKE '*server*', ('!Servers', CustomProperty2) , CustomProperty2 )

https://docs.connectwise.com/ConnectWise_ScreenConnect_Documentation/Get_started/Host_page/Session_groups/Create_session_subgroups

Could someone be kind enough to point me in the right direction!

This works fine but I also need to include CustomProperty2 at the end of the true statement.

 IIF (GuestOperatingSystemName LIKE '*server*', '!Servers' , CustomProperty2 )

Thanks,

Tom

0
Pending Review

Add option to invert selection

shawnkhall 2 months ago 0

Every time I upgrade SC I have to fix the code again to re-add the ability to invert the selection. Please add this code to the distribution so I don't have to do it myself every time. Thank you.

=== Host.aspx

~#874
function shouldCheckSession(session, checkModeType, selected) {
    switch (checkModeType) {
        case 'All': return true;
        case 'None': return false;
        case 'Neither': return !window.isProcessTypeConnected(session, SC.types.ProcessType.Host) && !window.isProcessTypeConnected(session, SC.types.ProcessType.Guest);
        case 'Both': return window.isProcessTypeConnected(session, SC.types.ProcessType.Host) && window.isProcessTypeConnected(session, SC.types.ProcessType.Guest);
        case 'OnlyHost': return window.isProcessTypeConnected(session, SC.types.ProcessType.Host) && !window.isProcessTypeConnected(session, SC.types.ProcessType.Guest);
        case 'OnlyGuest': return !window.isProcessTypeConnected(session, SC.types.ProcessType.Host) && window.isProcessTypeConnected(session, SC.types.ProcessType.Guest);
        case 'Invert': return !selected; // add this line
    }
}

~#915
isRowChecked = window.shouldCheckSession(r._dataItem, eventArgs.commandArgument, isRowChecked);

~#937
$div({ className: 'CommandList' }, [
$h4({ _textResource: 'Command.Check.CheckText' }),
    SC.command.createCommandButtons([
        { commandName: 'Check', commandArgument: 'All' },
        { commandName: 'Check', commandArgument: 'None' }, // add comma
        { commandName: 'Check', commandArgument: 'Invert', text: 'Invert' } // add line
    ]),
]),

===

For language support it also requires adding a value to the resx:

=== Web.en-US.resx

<data name="Command.CheckInvert.Text" xml:space="preserve">

  <value>Invert</invert>

</data>

===

0
Pending Review

Include file extenstions in Backstage File Explorer

LarryK 2 months ago 0

Now that you've implemented a decent, functioning, version of a File Explorer in Backstage, could you please go one step further and include file extensions?  Or the ability to turn them on or off for display?

Thanks!

0
Pending Review

Connect Wise Issue

Philip Fisher 2 months ago updated 2 months ago 1

I hope I am in the right community.  Please move if needed.

I have a teacher who has a MacBook Air running Monterey.   This message continues to appear on the desktop "ScreenConnect- Exit Application. Your host has ended the remote session. This application will not close".   

I reached out to CW support and they told me to use terminal to run some commands but doing "sudo -r /...." is not working. 

How do I fix it? 

0
Pending Review

Is it possible to add a feature in CW Control where we can exclude particular computer from displaying disconnection message. This is global setting and can be done using SessionHostsDisconnectedMessage.

Rajni Singh 2 months ago updated 2 months ago 0

Is it possible to add a feature in CW Control where we can exclude particular computer from displaying disconnection message. This is global setting and can be done using SessionHostsDisconnectedMessage.

Below is few example of the disconnection message

Image 1239

Image 1240