How to make a Start Screen icon for Notepad that will always open a new Notepad when clicked in Windows 8?

07
2014-07
  • Kirk

    Just installed Windows 8, pinned Notepad to the start screen. When I press the Windows key and use the Notepad tile to run Notepad, it will focus on the currently open Notepad window. I'd like it to start a new instance of Notepad. Is this possible?

  • Answers
  • Karan

    It actually is possible with a reg key to do this. it only works for desktop apps (not full screen win8 apps) though i imagine this is exactly what everyone is looking to do.

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\Launcher]
    "DesktopAppsAlwaysLaunchNewInstance"=dword:00000001
    

    Source here.

  • ronalchn

    Use the Shift key to start a new instance of any application. Either Shift+Enter or Shift-Click, or else middle click.

    Source: http://choorucode.wordpress.com/2012/10/22/start-multiple-instances-of-an-application-in-windows-8/

    Other taskbar modifiers include:

    Shift+Click         Open a new instance of the program
    Ctrl+Click          Cycle between windows in a group
    Middle Click        Open a new instance of the program
    Ctrl+Shift+Click    Open a new instance of the program as Administrator
    Shift+Right-Click   Show window menu
    
  • Bob

    To make it always open a new window with a normal left click, change the shortcut target of the tile:

    1. Right click on the tile

    2. Open file location. A File Explorer window should open, with a Notepad shortcut in it

    3. Right click on the Notepad shortcut

    4. Click properties

    5. Change the target to %windir%\system32\cmd.exe /c start %windir%\system32\notepad.exe

      enter image description here

  • Sathya

    Another rather tedious way to go about it is to right click on the tile & select "Open in New Window"


  • Related Question

    Always open new window from start screen
  • Rory Fitzpatrick

    When selecting an application from the Windows 8 Start screen, if I already have that application running the default behavior is to set the focus to the most recently opened window.

    Is it possible to change this behavior so it will always open a new instance of the application without having to right-click and select "Open new window"?


  • Related Answers
  • btriffles

    To open in a new window, you can you can use Shift+click or Middle-click to open in a new instance.

    If you want to set it to open in a new instance by default for All applications:

    1. WIN+R

    2. Enter regedit

    3. Go to the following key:
      • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\Launcher
      • You may need to create the final Launcher key if it doesn't already exist
    4. Double-click on "DesktopAppsAlwaysLaunchNewInstance" and set its value to 00000001
      • You may need to create the "DesktopAppsAlwaysLaunchNewInstance" entry (as a DWORD) if it doesn't already exist
    5. Log off and log back in for the change to take effect

    But if you want to set it to open a new instance by default in only ONE application:

    1. Right-click the icon
    2. click "Open file location"
    3. Right-Click the shortcut
    4. Properties
    5. And , on the Target: , add on the beginning %windir%\system32\cmd.exe /c start, like this:

      • Before: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

      • After: "%windir%\system32\cmd.exe /c start C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

  • Community

    Unfortunately there is no built-in way to change the default behaviour.

    Instead of right-clicking, you can hold Shift and Click (or press enter) which works for most desktop applications. The default Internet Explorer tile however does not abide by this even if it is set to open the desktop version.

  • Leftium

    First, try middle-click or shift-click. If that doesn't work try Start8 ($4.99; free trial):

    One other subtle thing I miss from Windows 7 is that shortcuts to apps like Notepad will start multiple instances of the app. For some unfathomable reason, the Windows 8 start screen always goes to the first instance of the app if you try to start Notepad or the like multiple times. That would be OK but I can't find any way to override it and easily start multiple instances. Start8 brings back the old behavior here.


    The easiest way to launch a new instance of the application is to hold down the Shift key while launching. Don't remember how I stumbled upon this, but it works for both the taskbar and the start screen launchers.

    via Hacker News

  • Jason C

    The registry tweak no longer works in 8.1. In 8.1 there is apparently a hack (source):

    1. Install Debugging tools for Windows (free download from MSDN)
    2. Create a directory on your computer to store symbols in ([author uses] c:\localsymbols)
    3. Create a shortcut on your desktop to run this (replace the two paths to point wherever you need):

      [path_to_debugging_tools]\ntsd.exe -pn explorer.exe -pv -y SRV*[path_to_local_symbols]*http://msdl.microsoft.com/download/symbols -c "eb Windows_UI_Search!SearchUI::Data::SwitchToApp b8 00 00 00 00 c3; q"
      
    4. Double click the shortcut and repeat the above experiment.

    Note: I do not know what "repeat the above experiment" in step 4 means. The original author wrote this in the above source and I do not have Windows 8.1. It could mean to add the registry key from 8. It could mean to repeat the process a second time. It could mean that it's finished and now works. If anybody tries this please post in comment below. I have sent the author a request for clarification.

    Why Microsoft chose to do this when every other operating system in existence and past version of Windows does the opposite is a bit beyond me. At least they made shift + enter functional, but apparently they decided that the majority of users are incapable of keeping track of their open windows (and UI decisions like that in major OSes are precisely why a user would end up like that) and that "start notepad" doesn't mean start notepad. And thus, they continue to doom typing commands to the realm of the "advanced" user.