Powershell – Get IP Details

Hi folks, this is a script to help you get network information from remote servers or clients. You can use get-content to a list of server names or you can run to a single machine. The information,includes,ComputerName,IPAddress,SubnetMask,Gateway,IsDHCPEnabled,DNSServers,WINSServers,MACAddress. Here is the code #How to run you can target one single machine Read more…

Active Directory Health Check

Quick Active Directory Health Check sending to your email , you can setup this script via schedule task and have it daily in your mailbox ! Function Getservicestatus($service, $server) { $st = Get-service -computername $server | where-object { $_.name -eq $service } if($st) {$servicestatus= $st.status} else {$servicestatus = "Not found"} Read more…

Coffee Friday #4

How to Powershell from your phone! Hi folks happy Friday! The topic of the day is how to PowerShell from your phone, its both related to automation and coffee I will tell you why! Automation, you can manage your environment from your phone during a traffic jam or even commuting Read more…