Linux

Connect as Root with Filezilla

Connect as root with FileZilla How to connect as root using FileZilla on a Debian machine. First we need to allow root login by editing the sshd config file on the remote machine. As root, edit the sshd_config file in /etc/ssh/sshd_config: nano /etc/ssh/sshd_config Uncomment the line PermitRootLogin prohibit-password and change it to PermitRootLogin yes.   Save …

Connect as Root with Filezilla Read More »

List all installed programs with PowerShell

List installed programs with PowerShell To list the programs installed on your machine, open PowerShell, copy / paste the following command and press Enter. You will see the list of all the installed programs on your computer or server. Get-ItemProperty HKLM:SoftwareWow6432NodeMicrosoftWindowsCurrentVersionUninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize To export the list to …

List all installed programs with PowerShell Read More »