Creating a PowerShell script that calls an apps cmdlet. When then cmdlet runs it prompts for a response and the scripts hangs. The cmdlet doesn't have any parameters for this. Is there any way to respond programmatically? I tried ECHO but that doesn't work.
Automate PowerShell Response to prompt
2.8k Views Asked by TMAC 23 At
1
There are 1 best solutions below
Related Questions in POWERSHELL
- How to ignore warning errors?
- Data execution plan ended with error on DB restore
- Powershell Split a file name
- PowerShell EWS Save as for e-mails
- Run SQL Server Update Statement With Powershell
- using a global variable in multiple functions powershell
- Heisenberg was here: Aliases for PowerShell parameters only appear in cmdlet help when you do NOT document the cmdlet
- PowerShell Script to add newuser
- Why is PowerShell "not recognized" when installing Chocolatey?
- Enumerate a PSCustomObject as key/value pairs
- Unable to start program outside Windows folder
- Ask for creds only if some specified
- PowerShell 3 Parameters
- i can't ping a computer but remoting into it works (powershell enter-pssession)
- Feeding Variables in new-aduser -path option in powershell
Related Questions in READ-HOST
- Is there a way to get user input to Powershell's Read-Host from PHP?
- Powershell: Read-Host to select an Array Index
- Powershell menu that loops when the script is launched via PSEXEC (with display return via CMD)
- Powershell Script to get list of local admins on multiple remote PC's
- Automate PowerShell Response to prompt
- Is there any way or method to figure out my mistake to get solution for this command?
- Changing a variable based on output
- Powershell Multiple string read-console
- Read-Host list of filenames and then export the Input to a csv file
- Read-Host Printing the data if the input is given from file | Ubuntu 16
- How do I check if a password in a System.Security.SecureString is empty?
- Powershell Get-mailboxdatabase and Create Shared Mailbox Script
- Do Until loop by Restricting user input to email address or domain\ID in PowerShell using Read-Host
- Autocomplete with TAB Read-host
- [string[]] Parameter vs Read-Host behaviour
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

The only way to get PowerShell scripts that solicit input via the host - typically, via
Read-Host- to read input from the pipeline instead of from the keyboard is to use to run the script as an external PowerShell instance.A simple example:
Note: Running the script / command via an external PowerShell instance comes at a cost:
Creating a new PowerShell process is costly in terms of performance.
Output from the new instance will be textual (strings) by default, not objects.
-OutputFormat xmlto the external instance and post-processing the results viaImport-CliXml, but that has limitations.