Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Open Thunderbirt in hidden mode-Windows 10

  • 1 பதிலளி
  • 0 இந்த பிரச்னைகள் உள்ளது
  • 4 views
  • Last reply by Matt

I need to open Thunderbird in hidden mode. I have tried various methods but none worked. I have write vba script: Dim WShell Set WShell = CreateObject("WScript.Shell") WShell.Run """" & "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" & """", 0 Set WShell = Nothing

I have tried PowerShell: Start-Process -WindowStyle hidden "C:\Program Files\Mozilla Thunderbird\thunderbird.exe"

And even the shortcut doesn't work when you select to run in minimized form.

I need to open Thunderbird in hidden mode. I have tried various methods but none worked. I have write vba script: Dim WShell Set WShell = CreateObject("WScript.Shell") WShell.Run """" & "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" & """", 0 Set WShell = Nothing I have tried PowerShell: Start-Process -WindowStyle hidden "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" And even the shortcut doesn't work when you select to run in minimized form.

All Replies (1)

Perhaps you could explain what hidden mode is? It is ok, I googled this windows scripting/ Powershell command and learned that the ,0 parameter is to invoke a hidden window style.

This is most certainly not the forum to get assistance with how this windows feature works, but I would guess that while the process start issues a hidden command of some sort it would not apply to windows opened by the process that is started.

What are you really trying to achieve here?