Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

PowerShell to Confirm or Cancel popup box to close multiple tabs?

  • 6 отговора
  • 1 има този проблем
  • 17 изгледи
  • Последен отговор от SAI157

more options

Powershell runs and and closes (using .CloseMainWindow()) Firefox window. If there are multiple tabs, 'Confirm close' message will pop up to let the user decide.

If there is one window with one or multiple tabs, the script works fine. If there are multiple windows with multiple tabs opened, .CloseMainWindow() only closes the top window. So, I ran a loop to check if Firefox is running and if it is, the process will be closed and 'Confirm close' will be shown, The script automatically, Send a key to confirm close tabs after 15 seconds,

The problem is that if the user click cancel, the loop keeps prompting the 'Confirm close' pop up until the process is closed.

Is there a way to check which button 'Close tabs' OR 'cancel' is clicked so upon hitting 'cancel', user can get out of the loop.

I don't want to use stop-process as it will show an error when Firefox is launched next time. I want to close it gracefully.

Or is there any other way to achieve this?

Thank you.

Powershell runs and and closes (using .CloseMainWindow()) Firefox window. If there are multiple tabs, 'Confirm close' message will pop up to let the user decide. If there is one window with one or multiple tabs, the script works fine. If there are multiple windows with multiple tabs opened, .CloseMainWindow() only closes the top window. So, I ran a loop to check if Firefox is running and if it is, the process will be closed and 'Confirm close' will be shown, The script automatically, Send a key to confirm close tabs after 15 seconds, The problem is that if the user click cancel, the loop keeps prompting the 'Confirm close' pop up until the process is closed. Is there a way to check which button 'Close tabs' OR 'cancel' is clicked so upon hitting 'cancel', user can get out of the loop. I don't want to use stop-process as it will show an error when Firefox is launched next time. I want to close it gracefully. Or is there any other way to achieve this? Thank you.

Променено на от SAI157

Всички отговори (6)

more options

Doesn't the user know you are running this script so they can avoid interfering with it? If not, they will know soon enough based on the problem it creates...

more options

I suppose I should say more generally that what Powershell can and can't detect is beyond the scope of this forum, and you could check with Technet or another site where regular users of the tool hang out.

more options
In reply to jscher2000

They do, but if they would like to cancel it momentarily, they can. Script will run after sometime again. Eventually, they would have to close to.

Променено на от SAI157

more options
In reply to jscher2000

You're right. But, what I am trying to find out is the name of the event handlers, so I can check if user clicks confirm or cancel, if possible.

Променено на от SAI157

more options

It would be somewhere in the source code repository, but the closest I can get you this section:

https://dxr.mozilla.org/mozilla-central/source/browser/components/nsBrowserGlue.js#1229

I haven't tried to find the form to see the actual event handlers attached to it. Hopefully you have time to hunt it down.

more options
In reply to jscher2000

Thank you. I think I've narrowed it down. However, I'm not so sure how to implement that in Powershell.

switch (choice) {

   case 2: // Quit
     if (neverAsk.value)
       Services.prefs.setBoolPref("browser.showQuitWarning", false);
     break;
   case 1: // Cancel
     aCancelQuit.QueryInterface(Ci.nsISupportsPRBool);
     aCancelQuit.data = true;
     break;
   case 0: // Save & Quit
     this._saveSession = true;
     if (neverAsk.value) {
       // always save state when shutting down
       Services.prefs.setIntPref("browser.startup.page", 3);
     }
     break;
   }

Променено на от SAI157