Matthew Cooper's community posts
Just an Update Info
Matthew Cooper,
User (Posts: 42)
Apr 17, 2022 6:09:23 pm EDT
Support level: Pro
...I just re-read your post and realised you are not using the script. I am unsure if there will be any effect of running the start command when the service is already running. Probably not, but I guess you will know for sure after it runs for a few days.
Just an Update Info
Matthew Cooper,
User (Posts: 42)
Apr 17, 2022 6:06:18 pm EDT
Support level: Pro
The antivirus is probably picking up the script as unknown and untrusted program. I would say that it quarantined the RUMonitor.cmd file which is why it did not work for you initially.
Your way will still work fine, I needed a way to quickly deploy it to machines which is why I created the installer. Creating an exclusion in the antivirus will probably solve this for you if you wish to do that.
You should see no adverse affects in running this as the script executes no commands when the RU service is already started, it will only issue a start command if the status returns not equal to running.
Your way will still work fine, I needed a way to quickly deploy it to machines which is why I created the installer. Creating an exclusion in the antivirus will probably solve this for you if you wish to do that.
You should see no adverse affects in running this as the script executes no commands when the RU service is already started, it will only issue a start command if the status returns not equal to running.
Just an Update Info
Matthew Cooper,
User (Posts: 42)
Apr 16, 2022 8:59:22 pm EDT
Support level: Pro
This thread got me thinking about the watchdog, so I have created a makeshift script version. Looking forward to a real fix, but in the meantime, here it is for anyone interested.
1. Create a batch file called CreateTask.cmd and insert the below code:
[This code creates a folder C:\Program Files\RUMonitor to store the script, and creates 2 scheduled tasks, the first runs the script at startup, the second runs the script every hour on the hour. Feel free to modify the schedule to your needs]
[This code checks to see if the RU host is running, if it is, nothing is performed. If it is not, a start command is sent to the service]
I have created an executable of this for our own use here:
http://mcadsl.com/pub_files/RUMonitor.msi
If you would like a copy of this script source, I cannot attach it to this post, but you can download it here:
http://mcadsl.com/pub_files/RUMonitorSource.zip
1. Create a batch file called CreateTask.cmd and insert the below code:
[This code creates a folder C:\Program Files\RUMonitor to store the script, and creates 2 scheduled tasks, the first runs the script at startup, the second runs the script every hour on the hour. Feel free to modify the schedule to your needs]
2. Create a second batch script called RUMonitor.cmd and insert the below code:
md "C:\Program Files\RUMonitor"
Copy RUMonitor.cmd "c:\Program Files\RUMonitor"
SCHTASKS /CREATE /RU SYSTEM /SC ONSTART /TN "RUMonitor Startup" /TR "C:\Program Files\RUMonitor\RUMonitor.cmd"
SCHTASKS /CREATE /RU SYSTEM /SC HOURLY /TN "RUMonitor Hourly" /TR "C:\Program Files\RUMonitor\RUMonitor.cmd" /ST 00:00:00
[This code checks to see if the RU host is running, if it is, nothing is performed. If it is not, a start command is sent to the service]
3. Place both scripts in a folder together [it does not matter which folder], then run the CreateTask.cmd as administrator. That's all that is required. You will see the 2 tasks in Task Scheduler.
echo off
for /F "tokens=3 delims=: " %%H in ('sc query "RManService" ^| findstr " STATE"') do (
if /I "%%H" NEQ "RUNNING" (
REM Put the service to start here
net start "RManService"
)
)
I have created an executable of this for our own use here:
http://mcadsl.com/pub_files/RUMonitor.msi
If you would like a copy of this script source, I cannot attach it to this post, but you can download it here:
http://mcadsl.com/pub_files/RUMonitorSource.zip
Edited:Matthew Cooper - Apr 16, 2022 8:59:50 pm EDT
Just an Update Info
Matthew Cooper,
User (Posts: 42)
Apr 16, 2022 3:09:37 am EDT
Support level: Pro
I too am interested in the outcome here.
We have been forced to run dual remote access applications on all systems to account for when RU does not start the host. It is very frequent in my case, and it is not limited only to reboots after a windows update. Regular reboots where no updates take place [Such as on Server 2008 R2 machines] result in this behavior too.
We have a little shy of 500 hosts in our network, so it is common for us to not realise that a host has not started right after a reboot.
It seems that RU needs a watchdog service that can restart the host if it is not running. Although it is another moving part, maybe a simple service of this type would be able to keep the host online.
Matthew
We have been forced to run dual remote access applications on all systems to account for when RU does not start the host. It is very frequent in my case, and it is not limited only to reboots after a windows update. Regular reboots where no updates take place [Such as on Server 2008 R2 machines] result in this behavior too.
We have a little shy of 500 hosts in our network, so it is common for us to not realise that a host has not started right after a reboot.
It seems that RU needs a watchdog service that can restart the host if it is not running. Although it is another moving part, maybe a simple service of this type would be able to keep the host online.
Matthew
Video Hook Drivers
Matthew Cooper,
User (Posts: 42)
Jan 06, 2022 9:59:16 pm EST
Support level: Pro
Thanks Conrad, I cannot say if my other software has this auto adjustment system as I simply do not know, and while that might explain the inability for me to use Menus through RU on occasion, the bigger issue for me is the loss of screen during the logon / logoff & startup/showdown processes as described.
I have also tested using Legacy Capture mode but that does not change any behaviour that I can see.
Essentially, I would like the remote screen to show me exactly what is happening at all times, is this not possible with RU?
Matthew
I have also tested using Legacy Capture mode but that does not change any behaviour that I can see.
Essentially, I would like the remote screen to show me exactly what is happening at all times, is this not possible with RU?
Matthew
Video Hook Drivers
Matthew Cooper,
User (Posts: 42)
Jan 05, 2022 4:55:58 pm EST
Support level: Pro
Thanks Conrad.
On the basis that my understanding of the mechanics of a remote access system are quite limited, which they are, is there any way to achieve a more accurate view of the remote screen?
For example, there are times when working remotely, I click on the Start Menu of the machine, it appears to respond to my mouse click, however, no menu appears.
Initially I thought this was an issue on the remote computer, however, I have since learned that if I connect using my alternate product, I can see the start menu, even though RU is not able to display it.
This particular issue is not common, it happens only randomly, but coupled with the loosing of display during logon/logoff etc. is what makes me ask the question.
Overall, I feel that the remote screen display has room for improvement, if video hook drivers are not the answer, is there a better way?
Matthew
On the basis that my understanding of the mechanics of a remote access system are quite limited, which they are, is there any way to achieve a more accurate view of the remote screen?
For example, there are times when working remotely, I click on the Start Menu of the machine, it appears to respond to my mouse click, however, no menu appears.
Initially I thought this was an issue on the remote computer, however, I have since learned that if I connect using my alternate product, I can see the start menu, even though RU is not able to display it.
This particular issue is not common, it happens only randomly, but coupled with the loosing of display during logon/logoff etc. is what makes me ask the question.
Overall, I feel that the remote screen display has room for improvement, if video hook drivers are not the answer, is there a better way?
Matthew
Video Hook Drivers
Matthew Cooper,
User (Posts: 42)
Jan 04, 2022 12:38:10 am EST
Support level: Pro
Does RU make use of a video hook driver? in addition to RU, I use an alternate product that is able to maintain a remote screen display through the Startup, Shutdown, Logoff, Switch User processes.
For example, the alternate product is able to display the remote screen "Preparing Windows" and similar screens on booting PCs [before the login screen has shown].
Likewise with shutdown, I can see see all the way to "Windows is Shutting Down".
With RU, I loose the remote screen the second I click shutdown. When logging off or switching users, the display freezes in place for 5-15 seconds before showing the logon screen.
When the PC is booting, even though RU will start to connect, I only see the splash image until the login screen is ready.
Along with the more reliable display, the video speed is both faster and produces better image quality.
Is there anything on the horizon in this area?
Matthew
For example, the alternate product is able to display the remote screen "Preparing Windows" and similar screens on booting PCs [before the login screen has shown].
Likewise with shutdown, I can see see all the way to "Windows is Shutting Down".
With RU, I loose the remote screen the second I click shutdown. When logging off or switching users, the display freezes in place for 5-15 seconds before showing the logon screen.
When the PC is booting, even though RU will start to connect, I only see the splash image until the login screen is ready.
Along with the more reliable display, the video speed is both faster and produces better image quality.
Is there anything on the horizon in this area?
Matthew
Self Hosted Server Update Breaks Remote Access
Matthew Cooper,
User (Posts: 42)
Jan 01, 2022 12:15:18 am EST
Support level: Pro
It seems I might have to eat my words on this one.
I have re-installed the Server version 3.2.0.0 and rebooted the machine, after this, I am now able to connect to machines via Internet IDs.
I will test and report back any further issues.
I have re-installed the Server version 3.2.0.0 and rebooted the machine, after this, I am now able to connect to machines via Internet IDs.
I will test and report back any further issues.
Self Hosted Server Update Breaks Remote Access
Matthew Cooper,
User (Posts: 42)
Dec 31, 2021 11:57:03 pm EST
Support level: Pro
Hi Support
Like many other people have reported, once I have updated my Self Hosted server and Viewer to the latest versions:
Server - 3.2.0.0
Viewer - 7.1.1.0
I am no longer to access any remote machines via their Internet IDs. I am able to access remote machines when I use direct connections.
The hosts appear online in the viewer display, however, once they are clicked on, they go offline and the connections attempts fail. A minute or two later, the host will show online again, but the same issue repeats.
I do not understand it, this software has great potential, it is such a shame that the reliability is so low. Will it ever improve?
Matthew
Like many other people have reported, once I have updated my Self Hosted server and Viewer to the latest versions:
Server - 3.2.0.0
Viewer - 7.1.1.0
I am no longer to access any remote machines via their Internet IDs. I am able to access remote machines when I use direct connections.
The hosts appear online in the viewer display, however, once they are clicked on, they go offline and the connections attempts fail. A minute or two later, the host will show online again, but the same issue repeats.
I do not understand it, this software has great potential, it is such a shame that the reliability is so low. Will it ever improve?
Matthew
Is it just me?
Matthew Cooper,
User (Posts: 42)
Aug 04, 2021 4:50:32 am EDT
Support level: Pro
Can I start by saying, I really love the idea of this software. It's design accommodates for the vast majority of things I am looking for in a remote access system. We are an MSP and use this software to support in excess of 350 endpoints on a regular basis.
This is why I am holding out hope that the potential is there for this to be a great tool.
Having said that, I am getting to the point where I am wondering if I am being naive, or maybe I am just doing it wrong.
I have constant issues across a range of areas, that are thinning my hair out day by day.
I run a self hosted server on a dedicated Windows Server 2012 R2 VM in our data center.
All software is running on the latest available versions [Server, Viewer, and Host]
My host machines are a mix of Windows 7,8.1,10,Server 2008,Server 2012 R2,Server 2016,Server 2019
File Transfer:
-Sometimes, the viewer will connect, and will show a blank window for the remote end, sometimes with a message similar to "cannot get folder", If I close this window and re-open will often resolve, but not always.
-Sometimes, it will connect and show all folders, and while navigating through the folder structure, this error will occur. Sometimes, going up a level will resolve, other times, I need to disconnect and reconnect. Example screenshot attached]
-When file transfers do not complete, no status is shown to indicate this. The failure to complete could be a connection drop, or interruption fr om the remote end, but still no error to show the transfer has failed. There are times I will transfer a large installation archive to a remote client - such as the installer for Adobe Photoshop, I would start this and move on to other work, but never know if it completed or if it was interrupted along the way. I know a successful completion will auto close the transfer window, but should a non-successful completion keep it open?
-At times, the file transfer window will get stuck open, and I cannot close it. Only a forced terminate of the viewer via task manager will close the window. This does not always stop file transfers being possible, often I can still open a new transfer to a different host in a new tab when this occurs.
Viewer Window:
-I have all hosts set to Auto Logon, however, some hosts show as Orange - Online, some as Green - Logged On and others show offline. Often the ones showing offline, are actually online, and will allow me to connect, however, it takes 1-3 connection attempts before the connection comes up. - This issue floats around, it is not a case of some hosts, have the problem. Most of the hosts will experience this at some point in time.
-I have some hosts that get stuck in a grey state with an hourglass icon, and never move. Only a restart of the viewer will clear this. Even a Sign Out / Sign In will not fix this. [example screenshot attached]
-I also have many cases wh ere a host shows as Orange - Online, then when I double click it, I get the hourglass, and it will turn grey and fail to connect 5 times. Once it fails for the last time, it will go back to Orange. Sometimes, another double click will work, other times, nothing will work, not even a restart of the viewer. However, I will come back to it an hour later and connect without issues.
-When machines are logging on or off, even though the machine is shown as Online or Logged on, a view of the remote screen is not possible. Particularly when switching users at the remote end. There is no display between the pressing of the Log Off / Sign Out button at the remote end, and the screen where you can choose / enter a different user. It seems that the video hook driver is not integrated deep enough. I have used other Remote Access software that is able to show these screens without issue.
-When a full control connection drops off, the viewer window does not close, it goes grey and shows a reconnecting message in the top left. This eventually stops trying to reconnect, but remains open in a frozen-like state. If you double click the host fr om the main viewer window again, the frozen window is brought back into focus, but does not try to connect. I need to manually close this window, which itself takes 5-10 seconds, then double click the host again to try and connect.
Remote Control:
-I find the clipboard get and set options very temperamental. Particularly the Set Clipboard does not always take the first time, it routinely takes 2-3 times before it commits, and there is almost always a delay of 3-5 seconds after clicking set before it will apply the change. I am only ever set a line of text, never pictures or any large data. This problem comes and goes randomly on random hosts.
General Use:
-The software is slow, just generally speaking. Right clicking a host and clicking properties is a full second before it appears. I know this is possibly a machine based issue, however, it is consistent across all my machines, which range from a 7yr laptop to a 1yr old Core i7 workstation.
-Connecting to a remote host is slow, the fastest I ever get is about 6-7 seconds for Logged On hosts, but 15-30 seconds is typical for Online hosts. My experience with direct connections rather than via the server is only marginally faster, not enough to warrant the extra work required to setup and maintain them.
If I ask the viewer to Log On a host that is orange, it is commonly about 10-15 seconds before it turns green.
Hosts:
-Some hosts do not come back online if they have been off for an extended period. I recently had an issue with the firewall to my Server, which denied connections from certain IP ranges. Once this was fixed, some hosts stayed grey and showed as offline until the machines were rebooted. Even restarting the Remote Host service did not bring them online.
I have had a small number of issues wh ere hosts show as offline until the machine was rebooted prior to the firewalling issue, but have been unable to do further troubleshooting due to the nature of being cut off from the machines.
Are my issues like the above simply what we all see when using the software, or have I somehow created a unique set of problems that no one else is suffering from?
Matthew
This is why I am holding out hope that the potential is there for this to be a great tool.
Having said that, I am getting to the point where I am wondering if I am being naive, or maybe I am just doing it wrong.
I have constant issues across a range of areas, that are thinning my hair out day by day.
I run a self hosted server on a dedicated Windows Server 2012 R2 VM in our data center.
All software is running on the latest available versions [Server, Viewer, and Host]
My host machines are a mix of Windows 7,8.1,10,Server 2008,Server 2012 R2,Server 2016,Server 2019
File Transfer:
-Sometimes, the viewer will connect, and will show a blank window for the remote end, sometimes with a message similar to "cannot get folder", If I close this window and re-open will often resolve, but not always.
-Sometimes, it will connect and show all folders, and while navigating through the folder structure, this error will occur. Sometimes, going up a level will resolve, other times, I need to disconnect and reconnect. Example screenshot attached]
-When file transfers do not complete, no status is shown to indicate this. The failure to complete could be a connection drop, or interruption fr om the remote end, but still no error to show the transfer has failed. There are times I will transfer a large installation archive to a remote client - such as the installer for Adobe Photoshop, I would start this and move on to other work, but never know if it completed or if it was interrupted along the way. I know a successful completion will auto close the transfer window, but should a non-successful completion keep it open?
-At times, the file transfer window will get stuck open, and I cannot close it. Only a forced terminate of the viewer via task manager will close the window. This does not always stop file transfers being possible, often I can still open a new transfer to a different host in a new tab when this occurs.
Viewer Window:
-I have all hosts set to Auto Logon, however, some hosts show as Orange - Online, some as Green - Logged On and others show offline. Often the ones showing offline, are actually online, and will allow me to connect, however, it takes 1-3 connection attempts before the connection comes up. - This issue floats around, it is not a case of some hosts, have the problem. Most of the hosts will experience this at some point in time.
-I have some hosts that get stuck in a grey state with an hourglass icon, and never move. Only a restart of the viewer will clear this. Even a Sign Out / Sign In will not fix this. [example screenshot attached]
-I also have many cases wh ere a host shows as Orange - Online, then when I double click it, I get the hourglass, and it will turn grey and fail to connect 5 times. Once it fails for the last time, it will go back to Orange. Sometimes, another double click will work, other times, nothing will work, not even a restart of the viewer. However, I will come back to it an hour later and connect without issues.
-When machines are logging on or off, even though the machine is shown as Online or Logged on, a view of the remote screen is not possible. Particularly when switching users at the remote end. There is no display between the pressing of the Log Off / Sign Out button at the remote end, and the screen where you can choose / enter a different user. It seems that the video hook driver is not integrated deep enough. I have used other Remote Access software that is able to show these screens without issue.
-When a full control connection drops off, the viewer window does not close, it goes grey and shows a reconnecting message in the top left. This eventually stops trying to reconnect, but remains open in a frozen-like state. If you double click the host fr om the main viewer window again, the frozen window is brought back into focus, but does not try to connect. I need to manually close this window, which itself takes 5-10 seconds, then double click the host again to try and connect.
Remote Control:
-I find the clipboard get and set options very temperamental. Particularly the Set Clipboard does not always take the first time, it routinely takes 2-3 times before it commits, and there is almost always a delay of 3-5 seconds after clicking set before it will apply the change. I am only ever set a line of text, never pictures or any large data. This problem comes and goes randomly on random hosts.
General Use:
-The software is slow, just generally speaking. Right clicking a host and clicking properties is a full second before it appears. I know this is possibly a machine based issue, however, it is consistent across all my machines, which range from a 7yr laptop to a 1yr old Core i7 workstation.
-Connecting to a remote host is slow, the fastest I ever get is about 6-7 seconds for Logged On hosts, but 15-30 seconds is typical for Online hosts. My experience with direct connections rather than via the server is only marginally faster, not enough to warrant the extra work required to setup and maintain them.
If I ask the viewer to Log On a host that is orange, it is commonly about 10-15 seconds before it turns green.
Hosts:
-Some hosts do not come back online if they have been off for an extended period. I recently had an issue with the firewall to my Server, which denied connections from certain IP ranges. Once this was fixed, some hosts stayed grey and showed as offline until the machines were rebooted. Even restarting the Remote Host service did not bring them online.
I have had a small number of issues wh ere hosts show as offline until the machine was rebooted prior to the firewalling issue, but have been unable to do further troubleshooting due to the nature of being cut off from the machines.
Are my issues like the above simply what we all see when using the software, or have I somehow created a unique set of problems that no one else is suffering from?
Matthew