Sunday, August 16, 2020

Copying SharePoint List Items using PnP

 This simple PowerShell script enables you to copy the items from one list to another which had the Lookup columns.
If master list item and the child list's PID column shares the same value then, It will start to copy the items.

Check the GitHub code 


Saturday, August 15, 2020

Connecting remote desktop from Linux

 If you are new to Linux and want to connect Remote Desktop then application "Remmina " is your best candidate. It lets you to connect remote machine through SSH, RDP and Bastion

When you connect first time, you might get the error "You requested an H264 GX mode for server [snip], but your libfreerdp does not support H264. Please check Color Depth settings."

This means , the dafault Remmina client built-in on your machine needed to be updated.

Follow this commands,

  1. sudo apt-add-repository ppa:remmina-ppa-team/remmina-next
  2. sudo apt update
  3. sudo apt install remmina remmina-plugin-rdp remmina-plugin-secret
  4. sudo killall remmina
Now you will get the latest "Remmina client" installed on your machine which will accept the H264 color depth.