i have a application which need to be updated via a bat file .
i’m looking for a powershell cmdlet or using psexec command to run this bat file on remote machines please help
tried with start-process and psexec command which doesn’t help me .
i have a application which need to be updated via a bat file .
i’m looking for a powershell cmdlet or using psexec command to run this bat file on remote machines please help
tried with start-process and psexec command which doesn’t help me .
I’ll want to use the Invoke-Command cmdlet.
Example:
param (
[Parameter(Mandatory=$true)]
[String[]]
$ComputerName
)
Invoke-Command -ComputerName $ComputerName -ScriptBlock {
& 'C:\path to file\name.bat'
}
Documentation:
https://msdn.microsoft.com/en-us/powershell/reference/5.1/microsoft.powershell.core/invoke-command