Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 6 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 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于修改