C
Christopher Graves
I'm trying to run commands on a remote machine via psexec. The issue
that I'm having is when grabbing the IP address from the array it wants
to put everything that follows on a separate line.
uName = "admin"
pWord = "1234"
ip = IO.readlines("ipAddresses.txt")
ip.each do |host|
puts "psexec \\\\#{host} -u #{uName} -p #{pWord} cmd"
end
the reply is
psexec \\127.0.0.1
-u admin -p 1234 cmd
is there a way to get that output on the same line so that psexec can
run properly with the system process.
thanks
that I'm having is when grabbing the IP address from the array it wants
to put everything that follows on a separate line.
uName = "admin"
pWord = "1234"
ip = IO.readlines("ipAddresses.txt")
ip.each do |host|
puts "psexec \\\\#{host} -u #{uName} -p #{pWord} cmd"
end
the reply is
psexec \\127.0.0.1
-u admin -p 1234 cmd
is there a way to get that output on the same line so that psexec can
run properly with the system process.
thanks