Skip to main content

Privacy Policy

This blog for knowledge sharing about windows,VMWare and Networking Solutions.In this blog i put the posts according to my knowledge and some posts are searched on net and put here.Blog owner is not responible for any losses.If any copy write isolation occur then i will remove immediately.contact me on at naveen.dornala@gmail.com

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...