PowerShell – Query domain name WhoIs

Hi Guys, I found, after couple of weeks looking for it, a cool API WebSite that provide an API to query WhoIs : webservicex.net. Once I found out this site I started writing this little PowerShell function to help me serialize all my future actions with this little guy. Here is the function I wrote […]

PowerShell WMI – Querying Operating System product informations

Hi guys, Here is a small function I wrote to gather basic informations arround the Operating System product. [ps]Function Get-ComputerSystemProductInfo { <# .SYNOPSIS Query WMI of the system to provide basic information of the Operating System product. .PARAMETER ComputerName The computer name or IP of targeted computer. .NOTES Author: Thomas Prud’homme (Twitter: @prudhommewtf). .LINK https://blog.prudhomme.wtf/powershell-querying-operating-system-product-informations […]

PowerShell WMI – Querying CD ROM informations

Hi guys, Here is a small function I wrote to gather the CD ROM drive basic informations. [ps]Function Get-CDROMInfo { <# .SYNOPSIS Query WMI of the system to provide basic CDROM information. .PARAMETER ComputerName The computer name or IP of targeted computer. .NOTES Author: Thomas Prud’homme (Twitter: @prudhommewtf). .LINK https://blog.prudhomme.wtf/powershell-wmi-querying-cdrom-informations #> [CmdletBinding()] Param( [String]$ComputerName = […]