SFTP in Powershell
Powershell

Run Powershell SFTP

Hi there, in this Powershell code i am going to use on “posh-ssh” module in order to work with Powershell for SFTP actions. The module is not large repository but it contains useful commands that […]

unnamed
Powershell

Get vm host and cluster Powercli

$Clusters = get-cluster $Result =@( Foreach ($Cluster in $Clusters) { $VMhosts = Get-VMHost -Location $Cluster foreach($VMhost in $VMhosts) { [pscustomobject]@{ “Host” = $VMhost.Name “Cluster Name” = $Cluster } } } ) $Result

unnamed
Powershell

Useful commands PowerCli

Hi All, I would like to share with you some useful PowerCli commands to work with VMware environments., The following commands will help you to automate your actions with Virtual Machines. Clone Virtual Machines from […]

windows shutting down 670x335
Powershell

Shutdown bulk of computers

Sometimes we would like shutdown our end-clients at a specific time due to some circumstances like save saving electric usage, maintenance and so on, right we have many options to performs this,  I would like […]