How to start Viber in minimized mode when booting Windows 7?
I want Viber get started automatically but get minimized in system tray also - I don't want to see it on my task pane.
How can I do that?
p.s. Going in the Viber application setting and found nothing there.

boot viber
add a comment |
I want Viber get started automatically but get minimized in system tray also - I don't want to see it on my task pane.
How can I do that?
p.s. Going in the Viber application setting and found nothing there.

boot viber
add a comment |
I want Viber get started automatically but get minimized in system tray also - I don't want to see it on my task pane.
How can I do that?
p.s. Going in the Viber application setting and found nothing there.

boot viber
I want Viber get started automatically but get minimized in system tray also - I don't want to see it on my task pane.
How can I do that?
p.s. Going in the Viber application setting and found nothing there.

boot viber
boot viber
asked Oct 1 '14 at 1:26
Nam G VUNam G VU
5,70750116182
5,70750116182
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
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
add a comment |
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:
- Navigate to C:UsersYOUR USERNAMEAppDataRoamingMicrosoftWindowsStart MenuPrograms

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

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

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
add a comment |
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.
add a comment |
I've simplified VarunAgw's solution to this:
Run Viber.exe
WinWait ahk_exe Viber.exe,, 10
if (0 == %ErrorLevel%) {
WinClose ahk_exe Viber.exe
}
Now it works for me just fine.
add a comment |
I created a small AHK script to solve this problem.
Copy it in same directory as Viber.exe (%USERPROFILE%AppDataLocalViber). and then associate it with AHK and update the startup entry to ViberTray.ahk
Source:
#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
}
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
add a comment |
VB NET
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Viber") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f819013%2fhow-to-start-viber-in-minimized-mode-when-booting-windows-7%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
add a comment |
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
add a comment |
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
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
edited Oct 1 '14 at 2:47
lzam
1,366916
1,366916
answered Oct 1 '14 at 1:47
Jonas D.Jonas D.
1146
1146
add a comment |
add a comment |
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:
- Navigate to C:UsersYOUR USERNAMEAppDataRoamingMicrosoftWindowsStart MenuPrograms

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

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

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
add a comment |
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:
- Navigate to C:UsersYOUR USERNAMEAppDataRoamingMicrosoftWindowsStart MenuPrograms

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

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

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
add a comment |
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:
- Navigate to C:UsersYOUR USERNAMEAppDataRoamingMicrosoftWindowsStart MenuPrograms

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

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

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
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:
- Navigate to C:UsersYOUR USERNAMEAppDataRoamingMicrosoftWindowsStart MenuPrograms

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

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

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
answered May 11 '15 at 16:51
Hugh TashHugh Tash
43647
43647
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Nov 12 '14 at 10:05
answered Nov 12 '14 at 9:05
the_redburnthe_redburn
152
152
add a comment |
add a comment |
I've simplified VarunAgw's solution to this:
Run Viber.exe
WinWait ahk_exe Viber.exe,, 10
if (0 == %ErrorLevel%) {
WinClose ahk_exe Viber.exe
}
Now it works for me just fine.
add a comment |
I've simplified VarunAgw's solution to this:
Run Viber.exe
WinWait ahk_exe Viber.exe,, 10
if (0 == %ErrorLevel%) {
WinClose ahk_exe Viber.exe
}
Now it works for me just fine.
add a comment |
I've simplified VarunAgw's solution to this:
Run Viber.exe
WinWait ahk_exe Viber.exe,, 10
if (0 == %ErrorLevel%) {
WinClose ahk_exe Viber.exe
}
Now it works for me just fine.
I've simplified VarunAgw's solution to this:
Run Viber.exe
WinWait ahk_exe Viber.exe,, 10
if (0 == %ErrorLevel%) {
WinClose ahk_exe Viber.exe
}
Now it works for me just fine.
answered Feb 13 '17 at 15:48
Alexey LotyshAlexey Lotysh
1
1
add a comment |
add a comment |
I created a small AHK script to solve this problem.
Copy it in same directory as Viber.exe (%USERPROFILE%AppDataLocalViber). and then associate it with AHK and update the startup entry to ViberTray.ahk
Source:
#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
}
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
add a comment |
I created a small AHK script to solve this problem.
Copy it in same directory as Viber.exe (%USERPROFILE%AppDataLocalViber). and then associate it with AHK and update the startup entry to ViberTray.ahk
Source:
#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
}
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
add a comment |
I created a small AHK script to solve this problem.
Copy it in same directory as Viber.exe (%USERPROFILE%AppDataLocalViber). and then associate it with AHK and update the startup entry to ViberTray.ahk
Source:
#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
}
I created a small AHK script to solve this problem.
Copy it in same directory as Viber.exe (%USERPROFILE%AppDataLocalViber). and then associate it with AHK and update the startup entry to ViberTray.ahk
Source:
#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
}
edited Jan 3 '18 at 18:40
answered Jun 26 '16 at 19:35
VarunAgwVarunAgw
3571316
3571316
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
add a comment |
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
Your script doesn't work.
– Suncatcher
Jan 3 '17 at 17:13
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
@Suncatcher Updated!
– VarunAgw
Feb 19 '17 at 10:47
add a comment |
VB NET
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Viber") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
add a comment |
VB NET
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Viber") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
add a comment |
VB NET
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Viber") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module
VB NET
Module Module1
Sub Main()
Dim myProcesses() As Process = Process.GetProcesses
For Each p As Process In myProcesses
If p.MainWindowTitle.Contains("Viber") Then
p.CloseMainWindow()
End If
Next
End Sub
End Module
edited Jan 28 at 15:05
Ahmed Ashour
1,3872716
1,3872716
answered Jan 28 at 9:22
Χρήστος ΜατσούκαςΧρήστος Ματσούκας
1
1
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
add a comment |
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
It works plain and simply... :) You can start it with windows with windows with some seconds delay...
– Χρήστος Ματσούκας
Jan 28 at 9:23
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f819013%2fhow-to-start-viber-in-minimized-mode-when-booting-windows-7%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown