Minimize issue

Discussion in 'Windows 10' started by Pasta88, Jan 4, 2019.

  1. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
    I have an app (ghostpress) that is in my startup folder. Is there a way to have it minimize as well? I have tried creating a shortcut by right click , new and that didnt work, autoit3 didnt work. And yes, I have googled for answer as well.
     
  2. pcnavarra

    pcnavarra MDL Senior Member

    Joined:
    Nov 13, 2017
    Messages:
    305
    Likes Received:
    118
    Trophy Points:
    10
  3. kaljukass

    kaljukass MDL Guru

    Joined:
    Nov 26, 2012
    Messages:
    2,436
    Likes Received:
    883
    Trophy Points:
    90
    Why it should be in startup folder? Its normal location is
    Code:
    C:\Users\{username}\AppData\Roaming\Ghostpress\Ghostpress.exe
    and if You want it to start with Windows, enable it from program settings, then it makes sheduled task like this
    Code:
    "C:\Users\{username}\AppData\Roaming\Ghostpress\Ghostpress.exe" -widget
    and starts with Windows and also minimized.
    You can make also desktop shortcut like this
    Code:
    "C:\Users\{username}\AppData\Roaming\Ghostpress\Ghostpress.exe" -widget
    and clicking on it will also start minimized, but if You already have enabled autostart, then it isn't needed.
    Then You have to make simple shortcut, if You really need it
    Code:
    "C:\Users\{username}\AppData\Roaming\Ghostpress\Ghostpress.exe"
     
  4. Pasta88

    Pasta88 MDL Expert

    Joined:
    Jun 17, 2009
    Messages:
    1,154
    Likes Received:
    29
    Trophy Points:
    60
  5. kaljukass

    kaljukass MDL Guru

    Joined:
    Nov 26, 2012
    Messages:
    2,436
    Likes Received:
    883
    Trophy Points:
    90