Script to get the local administrators group membership of a multiple remote servers in excel. This VB script will fetch the local administrators group members details and store it in… Read more »
Batch script to delete X days old file from specified location. Where is X is number of days. @echo off REM Remove files backup older than X days Echo Deleting… Read more »
This script will ping multiple server available in servers.txt and display IP with status. Copy below contents and save as filename.vbs and create a servers.txt will all server names one… Read more »
VB Script to collect Windows server hardware details. Script will Collect Serial Number, Make, Model, OS, CPU, RAM, Drive details on multiple servers remotely. Copy below contents and save as… Read more »
Powershell script to control windows service on multiple remote servers. Get-content “Filename” | foreach {set-Service -ComputerName $_ -Name “Service Name” -StartupType Disabled -Status Stopped} Note: Replace Filename with filename location… Read more »