Don’t want someone looking at your screen that you are remoted into using Chrome Remote Desktop?
Here’s the link to Google’s support page for it.
Here are the shortcuts to Mac only. Why not Windows 10? Because you have to set RDP to allow connections from any security level. You should only have it set to require high Encryption.
On your Max, open terminal:
Set the default value of RemoteAccessHostRequireCurtain to true using the defaults command for both the current user and root:
defaults write com.google.Chrome RemoteAccessHostRequireCurtain -boolean true
sudo defaults write com.google.Chrome RemoteAccessHostRequireCurtain -boolean true
To restore RemoteAccessHostRequireCurtain, delete the key from the defaults for the current user and root:
defaults delete com.google.Chrome RemoteAccessHostRequireCurtain
sudo defaults delete com.google.Chrome RemoteAccessHostRequireCurtain