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.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Open Thunderbirt in hidden mode-Windows 10

  • 1 trả lời
  • 0 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi 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.

Tất cả các câu trả lời (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?