NewRemote-Process

January 5, 2019 Jeevan Bobba 0

cls Function New-RemoteProcess { #[CmdletBinding()] Param( [String]$ComputerName = $env.computername, [String]$Cmd = $(Throw “You must enter path to the command which will create the process”), [String]$ac, […]

Moving Object from one OU to other OU

July 12, 2018 Jeevan Bobba 0

Get-Content C:\temp\Computers.txt| %{Move-ADObject -Identity “CN=$_,OU=WIN10,OU=ABC,OU=Computers,DC=CHILD,DC=Domain,DC=Vmwareenterprise,DC=com” -TargetPath “OU=Prod,OU=WIN10,OU=ABC,OU=Computers,DC=dev,DC=DIR,DC=vmwareenterprise,DC=com”} -Verbose

No Image

Username creation

May 7, 2018 Jeevan Bobba 0

Just give input as first name and last name in inputfile   Jeevan bobba Abcdef ghijklmnopqrst It will create username and by adding v- at […]

Restart Multiple VM’s

October 12, 2017 Jeevan Bobba 0

 Connecting to individual host Open VMware vSphere PowerCLI console #Connect to the host Connect-VIServer -Server hostname.example.com #Get all VMs from the host, filter those powered […]