Find Last Reboot Time in Windows with PowerShell

A few years back I wrote, “Find Last Reboot Time in Windows 7, Vista and Windows 2008,” where you could find this info via command prompt. This is an update to that for later versions of Windows using PowerShell. This first way will display how long the network service has been running.  Generally this will […]

Getting Dell Service Tag using PowerShell

Powershell’s get-wmiobject commandlet makes getting the Dell service tag or serial number for (some) other computer models easy. Get-WmiObject win32_SystemEnclosure | select serialnumber This worked for me successfully with Dell and SuperMicro, however it didn’t work on and HP computer I have. Haven’t tried it on IBM or others yet. . .