Page 1 of 2 12 LastLast
Results 1 to 15 of 23

Thread: Running IE minimized

  1. #1

    Default Running IE minimized

    Hi!

    I've been playing around and wondering if there's anyway I can run a specific URL in IE6 (being the default browser) at StartUp minimized.

    I've got the bit with running it, either by placing the .url in the StartUp or by throwing a batch file in, the thing is, I haven't got a clue how to run it minimized.

    Any ideas?

  2. #2
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff

    Default

    If your doing it via command line there should be an operator you can append to the end to make it run minimised, you'll need to google to find what it is though...
    FOA

  3. #3
    Your very own Pikachu! Banned Peegee's Avatar
    Join Date
    Mar 2001
    Posts
    19,488
    Blog Entries
    81

    Grin

    sauce

    Save the batch file or the command line switches as a shortcut. Fun times.

  4. #4

    Default

    Umm... I don't want to edit the program itself, just the way it is executed.

    @Baloki: Spend 2 hours looking for one. Could you be a little bit more specific.

  5. #5
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff
    FOA

  6. #6
    Old school, like an old fool. Flying Mullet's Avatar
    Join Date
    Apr 2003
    Location
    Napping in a peach tree.
    Posts
    19,185
    Articles
    6
    Blog Entries
    7
    Contributions
    • Former Administrator
    • Former Cid's Knight
    • Former Senior Site Staff

    Default

    I did some searching for a flag/switch myself and couldn't find any. It seems that you can open it in full screen mode and with ActiveX and such disabled, but not much else.

    Then again, it would seem odd that someone would want to open a windows based program and have it run minimized, so they might not have included it as a startup option.
    Figaro Castle

  7. #7
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff

    Default

    You can run it in the background without the window opening though according to those switches.
    FOA

  8. #8
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    It would be quite possible to do a hack with JavaScript. The SendKeys function would allow it, I think. I'm posting from my phone now, but I'll look into it shortly.

  9. #9
    Draw the Drapes Recognized Member rubah's Avatar
    Join Date
    Dec 2004
    Location
    Now Destiny is done.
    Posts
    30,655
    Blog Entries
    21
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    ^--what a nerd.

  10. #10
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    Shut up, you.

    Anyway Discord, save this code to a file with the extension ".js". Then drop it in your \WINDOWS\Startup folder and it should execute on startup. Remember to change the URL to whatever page you need opened. If you want to verify that it works before restarting or whatever, you can execute it by double-clicking it.
    Code:
    var wshell = WScript.CreateObject("WScript.Shell");
    wshell.Run("iexplore.exe http://forums.eyesonff.com", 6);
    EDIT: Just to clarify, I minimised it not by passing a command-line parameter to iexplore.exe, but by specifiying to the Wscript.Shell object that whatever command is executed, do it minimised and without focus. Therefore, it would minimise any program started this way.

  11. #11
    Hypnotising you crono_logical's Avatar
    Join Date
    May 2001
    Location
    Back in Time
    Posts
    9,313
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    Isn't there an option in shortcuts you can set to make them run stuff in windows minimised?
    Problems playing downloaded videos? Try CCCP


  12. #12

    Default

    Hmmm... great idea Face! It seems to work great on one system, yet on the other it's asking which app the file should be executed with. =/

    I thought so too, crono, but I don't know, it seems that nobody can find one that would.

    Thanks for your input so far, people! You've been a great help!

  13. #13
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff

    Default

    Now Discord can fish for passwords in style!
    FOA

  14. #14

    Default

    Quote Originally Posted by Baloki View Post
    Now Discord can fish for passwords in style!
    Nah, I've got enough of those already. I'm just artificially keeping my activity level on one web-site at 100%. (please don't ask, why any sane person would do that)

    PS: Yes, I could let it run in background, but there's really no need to give early grey hairs to the guys in data security dept.
    Last edited by Discord; 11-13-2007 at 08:04 PM.

  15. #15
    Hypnotising you crono_logical's Avatar
    Join Date
    May 2001
    Location
    Back in Time
    Posts
    9,313
    Contributions
    • Former Administrator
    • Former Cid's Knight

    Default

    cron job with wget would be far easier on a linux box if that's all you're trying to do
    Problems playing downloaded videos? Try CCCP


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •