Windows 10: How To Automaticaly Start A Program Minimized

Discus and support How To Automaticaly Start A Program Minimized in Windows 10 Software and Apps to solve the problem; Thank you very much for this detailed explanation. Another solution Bree found was to add the argument "/background" in task scheduler. Kind regards... Discussion in 'Windows 10 Software and Apps' started by Chris Nicola, Jan 1, 2017.

  1. How To Automaticaly Start A Program Minimized


    Thank you very much for this detailed explanation. Another solution Bree found was to add the argument "/background" in task scheduler.

    Kind regards
    Chris


    How To Automaticaly Start A Program Minimized [​IMG]
     
    Chris Nicola, Nov 8, 2017
    #16
  2. mananas Win User

    There was a mistake in startup, the actual script was missing from command line:
    When using with the windows Tas Scheduler, you place
    C:\Windows\System32\wscript.exe
    as executable and the rest of the parameters as arguments, in my example
    /B /NoLogo path\startprocess.vbs "C:\Windows\System32\cmd.exe /C MyStartup.cmd" 7

    In the example I initially used the redirection of stdout to a log file (> C:\Temp\Mystartup.log) which is optional of course.

     
    mananas, Nov 8, 2017
    #17
  3. pafnooty Win User
    I want to start a program (Zotero) minimized, so I tried the bat file approach with a single line:

    start /min "C:\Program Files (x86)\Zotero\zotero.exe"

    and it failed to start at all. I went to Command Prompt and tried

    C:
    start /min "Program Files (x86)\Zotero\zotero.exe"

    and, surprise, it didn't work there either! It simply creates and minimizes another C: command prompt window (if I start without the /min, it opens the C: window). The only thing that worked was to navigate to the final directory, and then it started, minimized or not. So the final working bat file is:

    C:
    cd "Program Files (x86)\Zotero"
    start /min zotero.exe

    I tried the same sequence of tests with another program, and the same thing happened.

    I'm happy with the solution, but does anyone have any idea what's going on?

    Cheers!

    Ed
     
    pafnooty, Mar 8, 2018
    #18
  4. mananas Win User

    How To Automaticaly Start A Program Minimized

    This is by desing of the start program. Start ["title"] program
    If the first parameter has quotes, it is assumed title.
    Try editing your command to

    start /min "" "Program Files (x86)\Zotero\zotero.exe"
     
    mananas, Apr 5, 2018
    #19
Thema:

How To Automaticaly Start A Program Minimized

Loading...
  1. How To Automaticaly Start A Program Minimized - Similar Threads - Automaticaly Start Program

  2. How To Start Program In Tray That When Minimized Alr Goes Into Tray

    in Windows 10 Software and Apps
    How To Start Program In Tray That When Minimized Alr Goes Into Tray: ok so I understand that the title may be confusing but let me explain. I have a program which takes mouse movement and puts it on a linear curve and I use it for playing fps games. If I launch the program it opens maximized as usual but its different in that when minimized it...
  3. Need to start a program minimized

    in Windows 10 Software and Apps
    Need to start a program minimized: Hi... I made a new string on the following registry key: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run I got the program to start on windows startup. But I need it to open minimized. What do I need to do to make it open...
  4. How to start a program minimized

    in Windows 10 Support
    How to start a program minimized: Hi... I made a new string on the following registry key: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run I got the program to start on windows startup. But I need it to open minimized. What do I need to do to make it open...
  5. Start Menu, minimized programs in the Taskbar are bigger

    in Windows 10 Support
    Start Menu, minimized programs in the Taskbar are bigger: Hi guys, I recently re-installed Windows 10 Pro 64 bit and I already ran into troubles. I fixed most of them with DISM & SFC scans, but for some weird reason my Start Menu, minimized programs in the Taskbar are bigger, and the Folders inside Windows Explorer look somehow a...
  6. Automaticaly Start A Program Minimized doesn't work

    in Windows 10 Software and Apps
    Automaticaly Start A Program Minimized doesn't work: I've read this old thread: How To Automaticaly Start A Program Minimized since I'm facing the same problem (I want to start a couple of apps minimized plus task manager) and I tried the following commands but they don't work: Code: start /min ""...
  7. how to sign in automaticaly

    in Windows Hello & Lockscreen
    how to sign in automaticaly: How to sign in automaticaly https://answers.microsoft.com/en-us/windows/forum/all/how-to-sign-in-automaticaly/8b69d734-3e83-479c-80ef-82ff0fab9770
  8. Batch file start program minimized

    in Windows 10 Support
    Batch file start program minimized: Here's a little script to make a backup of 2 directories: Code: ::can't copy Opera data while Opera is running taskkill /im opera.exe robocopy c:\all e:\Bobback\All /mir robocopy c:\Users\Bob\AppData\Roaming e:\Bobback\Roaming /mir ::restart Opera minimized start...
  9. How to minimize programs in Windows 10

    in Windows 10 Support
    How to minimize programs in Windows 10: Hello, In all the previous windows, you could right click a program on your taskbar, and select minimize. Why did windows 10 remove this feature? How are you supposed to minimize programs now??? I dont want to minimize all programs, or show the entire desktop... I want to...
  10. Batch file - Unable to start a program minimized

    in Windows 10 Support
    Batch file - Unable to start a program minimized: I've been trying to figure this out for a while now and I can't. I've looked at tons of small tips online to get this working but it doesn't work at all. I have a batch file which causes various programs to start when opened. However, one of them always appears above the rest...