搜索 | 用户支持

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

详细了解

Open Thunderbirt in hidden mode-Windows 10

  • 1 个回答
  • 0 人有此问题
  • 4 次查看
  • 最后回复者为 Matt

more options

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.

所有回复 (1)

more options

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?