I have the current powershell script
$release = read-host "enter release"
$fullPath = "10.0.0.3"
$fullPath = $fullPath + $release
$fullPath = $fullPath + ".bat"
start-process $fullPath
Currently I log in to a remote machine to run this code for this example 10.0.0.2. The code then pulls the files from another remote machine (10.0.0.3). What I would like to do is execute this script from my local machine (10.0.0.1) and have it run on .2. I have full access to the box so that should make it easier. How can i go about doing this?