Category: Scripting (Automation)

Scripting (Automation)

Script to fetch local administrators group membership of a multiple remote servers

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 »

Powershell Script to start/stop/disable service on multiple remote server

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 »