Day: December 1, 2020

PowerShell: Rebooting a List of Computers

Recommended Method to Process a List of Computers: $computernames='web01','web02','web03' restart-computer -computername $computernames -force -wait Get-WmiObject…

Installing ScreenConnect Client on Ubuntu 20.04

Installation: # CLI installation method after setup file has been downloaded sudo apt install default-jre…

How to Enable XRDP Session Sharing

# Edit the xrdp init file sudo vim /etc/xrdp/xrdp.ini # Add this at the bottom…

Linux: Init Process in the Background and Detach

# Define program program=remmina # Method 1 nohup $program & # Method 2 $program &…