Author

Rich

Just another IT guy.

Disable User’s Home Folder Creation in Zentyal

March 31, 2022

By default, Zentyal creates a Home Folder for each user created through the web interface and not through Active Directory Users & Computers (dsa.msc). To disable this action,…

Get monitor make and serial number command line

November 19, 2021

The following powershell command will return make and serial number of a monitor connected to the computer. gwmi WmiMonitorID -Namespace root\wmi | ForEach-Object {($_.UserFriendlyName -ne 0 | foreach…

ServiceDesk Plus MSP 10.5 Postgre SQL password

January 14, 2020

The latest release of ManageEngine ServiceDesk Plus MSP changes the default user and password of the Postgres SQL database. Previously, the command to connect to the database was:…

Get and Install Windows Updates via PowerShell

January 13, 2020

Using the following package PSWindowsUpdate you can Get-WindowsUpdate and Install-WindowsUpdate. install-module pswindowsupdate DESCRIPTION Use Get-WindowsUpdate (aka Get-WUList) cmdlet to get list of available or installed updates meeting specific…

'wc -l' equivelant for Windows… kinda

October 31, 2019

Came across a cool find today that I can implement in Windows to replicate wc -l. When wanting to count how many lines in a file on Windows,…

Login to WordPress from Python

October 27, 2019

I've been trying to learn some Python and have been tinkering with the requests module. Here is how I am able to log into a webpage, such as…