
Not sure why R# is complaining about this, never did before but hey I just updated to the latest version. Found this issue entry in the R# issue tracker. If you don't want or care about smart rule detection you can turn this feature off and all will be right in your IDE world again.

Recently while setting up a new Ubuntu 20.04 VM (from the Quick Create in Hyper-V) I found that I could not RDP into the machine once it was setup, however it was sitting on my network configured with my NAT Switch.
Turns out that the xrdp daemon was not starting and had a cryptic error about VSOCK. Doing a bit of research found that I needed to edit the /etc/xrdp/xrdp.ini file and set the option use_vsock from true to false
#/etc/xrdp/xrdp.ini
use_vsock=false
After that change I restarted the xrdp daemon and was able to connect to it.

Randomly would get this error and dialog when loading and running a new or existing Visual Studio Web project on a machine that never had run it before. The problem seems to have various solutions to it with varying results. Below is the solution that ultimately worked in my situation with the Event Log error I was getting.
First open up the Event Viewer in "Windows Administrative Tools" under the start menu. If you find the following error:
Unable to bind to the underlying transport for [::]:XXXXX. The IP Listen-Only list may contain a reference to an interface which may not exist on this machine. The data field contains the error number.
Where XXXX is a port number for the website that is failing to run in Visual Studio.
If this is the case you can run the following command in an elevated PowerShell / command prompt
netsh http add iplisten ipaddress=::
Then reboot the machine and try again
I have and old Canon Scanner (CanonScan LIDE 500F) that I wanted to get working to scan some documents quickly, getting it to work in Windows 10 was not as difficult as I thought.
- Get the Twain Drivers here: https://www.usa.canon.com/internet/portal/us/home/support/details/scanners/support-scanners-canoscan-series/canoscan-lide-500f?tab=drivers_downloads and select Windows 7 (x86 or x64) version
- Download the CanoScan Toolbox v4.9 from the software tab.
- Unpack the Twain Drivers with 7Zip to your desktop (even though it's an exe it will still unzip using 7Zip)
- Plug the Scanner into windows and use the Device Manager to update the drivers on the device by browsing to the folder you unpacked the drivers in the previous location (this is what I did you might be able to just install the drivers with the setup)
- Install the Toolbox software and restart
- Add the following path to the PATH variable in Windows C:\Windows\twain_32\CNQL500
- This is to avoid the "Unable to open TWAIN source" when you try and scan from the toolbox.
You should be able to scan from the toolbox software.
Updated to the latest Office 2019 Pro Plus and it installed Skype for Business 2019 and stopped being able to see shared screens from presenters in meetings or when in single user meetings. The fix for me is listed below:
Run the following commands in a command prompt with elevated permissions'.
net stop winnat
netsh int ipv4 add excludedportrange tcp 50000 60
netsh int ipv4 add excludedportrange udp 50000 60
Reboot the machine
These commands create an exclusion for the port range these default ports are used by Skype when doing audio/video.
Reference Site:
https://social.technet.microsoft.com/Forums/en-US/7687ca88-5a53-4031-b1ff-dceba58dec35/skype-for-business-desktop-sharing-doesnt-work-when-hyperv-is-installed?forum=sfbfr