Как запустить Viber в свернутом режиме при загрузке Windows 7?

7900
Nam G VU

Я хочу, чтобы Viber запускался автоматически, но также был свернут в системном трее - я не хочу видеть его на панели задач.

Как я могу это сделать?

Зайдя в настройку приложения Viber и ничего не нашел там.

Как запустить Viber в свернутом режиме при загрузке Windows 7?

6

5 ответов на вопрос

5
Jonas D.

If they don't add the option to do so, it's not possible, sadly enough. You could always suggest the viber developers to add the option @ http://support.viber.com/customer/portal/emails/new

4
Hugh Tash

As of 2015-05 it seems it's not possible to make Viber autostart minimized to System tray.

However, it's at least possible to prevent Viber main window popping out on startup, instead keeping Viber minimized to Windows Taskbar, not System tray.

Here's how to prevent Viber popping out on Window 7 startup:

  1. Navigate to C:\Users\YOUR USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs

Viber shortcut

  1. Find Viber shortcut

  2. Right mouse click on Viber shortcut - Properties - select Shortcut Tab - Run: from dropdown menu select Minimized - OK

Minimized

This will make Viber start minimized to Windows Taskbar from where you can close Viber window and leave Viber icon only in System tray:

Taskbar

Obviously, we should all suggest Viber developers to add an option to Autostart Viber minimized to System tray @ https://support.viber.com/customer/portal/emails/new

2
the_redburn

Viber is launched with the command "viber.exe StartMinimized". This "StartMinimized" argument seems to mean that they intended Viber to start minimized. But it only works when Viber is pinned to the taskbar.

That being said, your best bet is to contact them at http://support.viber.com/customer/portal/emails/new to report that problem.

0
VarunAgw

Я создал небольшой скрипт AHK, чтобы решить эту проблему.

Скопируйте его в тот же каталог, что и Viber.exe( %USERPROFILE%\AppData\Local\Viber). а затем связать его с AHK и обновить запись запуска доViberTray.ahk

Источник:

#NoTrayIcon  ProcessId(exe_name) { Process, Exist, %exe_name% return %ErrorLevel% }  PID := ProcessId("Viber.exe") Run viber.exe  if (0 == PID) { WinWait ahk_exe viber.exe WinWaitActive ahk_exe viber.exe,,2 WinClose ahk_exe viber.exe }  
Ваш скрипт не работает. Suncatcher 7 лет назад 0
@Suncatcher Обновлено! VarunAgw 7 лет назад 0
0
Alexey Lotysh

Я упростил решение VarunAgw для этого:

Run Viber.exe WinWait ahk_exe Viber.exe,, 10  if (0 == %ErrorLevel%) { WinClose ahk_exe Viber.exe } 

Теперь у меня все работает просто отлично.