Reputation: 3909
I need to enter Ctrl-Y here using PowerShell script, in order to automate this task. please let me know how this can be done.
Any suggestions are welcome.
Upvotes: -1
Views: 556
Reputation: 469
try something like this:
[System.Windows.Forms.SendKeys]::SendWait('^y')
Upvotes: 1