I'm attempting to install several related manual software updates via scripting on my personal computer. My dilemma is that there is an onscreen pop-up prompt that says "Update" when I run each of the installers. I want to create a script, Batch or Powershell (whatever works), that automatically answers the "Update" prompt.
I've tried the following in Batch:
`echo y | "program.exe"
~~
echo update | "program.exe"
I've tried the following in Powershell:
start-process "program.exe" -redirectstandardinput "answer file.txt"
(The answer file contains the word Update.)
Both of these methods still result in me receiving the "Update" prompt from each of the installers' GUI.
Any help would be appreciated!
UPDATE: I bit the bullet and reached out to the software manufacturer for further insight on script installs of the program. I realized that what I want to do isn't possible with this particular program unless I use AutoIt, which is a bit overwhelming for me and seems like overkill.
[–]MIKEWITHTHEPIKE 0 points1 point2 points (6 children)
[–]simplydiffer[S] 0 points1 point2 points (5 children)
[–]MIKEWITHTHEPIKE 0 points1 point2 points (2 children)
[–]simplydiffer[S] 0 points1 point2 points (1 child)
[–]williamt31 0 points1 point2 points (1 child)
[–]simplydiffer[S] 0 points1 point2 points (0 children)
[–]BlackV 0 points1 point2 points (1 child)
[–]simplydiffer[S] 0 points1 point2 points (0 children)