12

Windows has virtual desktops which is great. I use separate desktops for different things I am working on. But if I close a program (or reboot), then when I open the program again the program appear on the desktop I am currently on. So I manually have to move the program back.

I guess for chrome it is even more complicated as it is the same program with different windows. It would be nice to have the windows stay on the desktop they were before closing.


Similar to these issues with the difference of my question asking to remember windows position as opposed to setting it explicitly.

EDIT (2022): All these workarounds seem unnecessary now. Chrome will now open windows on the desktop they were when chrome was closed.

5 Answers5

3

This can be done with the below AutoHotKey script, which accepts two shortcut keys:

  • F11 : Will write the titles of all current windows and their virtual desktop numbers to a text file specified in the parameter FILENAME that is found at the beginning of the script.
  • F12 : Reads the text file and moves all the windows it can find by their title to the specified virtual desktop.

Copy the following text into an .ahk file, possibly changing "FILENAME", "F11" and "F12". Double-click the file to start it executing. It will create a green "H" icon in the traybar that you can right-click and select Exit to stop. If you always want this script to execute, copy it to the user Startup folder at C:\Users\<user name>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.

This script requires to download from the Github project windows-desktop-switcher the DLL VirtualDesktopAccessor.dll and storing it in the same folder as the AutoHotKey script. It might not work for Windows 10 versions below 1809.

The script itself is below and is programmed for only one monitor. It does not create the virtual desktops, so they should be created before running it. It worked for me, but should be tested. As it's using undocumented features, it might stop working some time in the future.

DetectHiddenWindows Off
SetTitleMatchMode, 2

FILENAME = C:\Temp\possaves.txt

hVirtualDesktopAccessor := DllCall("LoadLibrary", Str, "VirtualDesktopAccessor.dll", "Ptr") 
MoveWindowToDesktopNumberProc := DllCall("GetProcAddress", Ptr, hVirtualDesktopAccessor, AStr, "MoveWindowToDesktopNumber", "Ptr")
IsWindowOnDesktopNumberProc := DllCall("GetProcAddress", Ptr, hVirtualDesktopAccessor, AStr, "IsWindowOnDesktopNumber", "Ptr")

global numdesktops := GetDesktopsNumber()

F11::  ; Write list of "desktop@title"
EnumAddress := RegisterCallback("EnumWindowsProc", "Fast")
global numwins := 0
global file := FileOpen(FILENAME, "w")
DllCall("EnumWindows", "Ptr", EnumAddress, "Ptr", 0)
file.Close()
return

F12::  ; Read list and execute
global result
Loop, Read, %FILENAME%
{
    word_array := StrSplit(A_LoopReadLine, "@",, 2)  ; Omits periods.
    hwnd := WinExist(word_array[2])
    if (hwnd)
        DllCall(MoveWindowToDesktopNumberProc, UInt, hwnd, UInt, word_array[1] - 1)
}
return

GetDesktopsNumber()
{
    RegRead, cur, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SessionInfo\1\VirtualDesktops, CurrentVirtualDesktop
    RegRead, alldesktops, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VirtualDesktops, VirtualDesktopIDs
    return floor(strlen(alldesktops) / strlen(cur))
}

EnumWindowsProc(hwnd, lParam)
{
    WinGetTitle, title, ahk_id %hwnd%
    if title {
        desktopnum := GetHWNDDesktopNumber(hwnd)
        if (desktopnum >= 0) {
            numwins := numwins + 1
            line = % desktopnum "@" title "`r`n"
            file.Write(line)
        }
    }
    return true
}

GetHWNDDesktopNumber(hwnd)
{
  global  numdesktops, IsWindowOnDesktopNumberProc
  Loop, %numdesktops% {
    ix := A_Index - 1
    windowIsOnDesktop := DllCall(IsWindowOnDesktopNumberProc, UInt, hwnd, UInt, ix)
    if (windowIsOnDesktop == 1)
      return A_Index
  }
  return -1
}
harrymc
  • 498,455
3

My solution is basically the same as @harrymc with following improvements:

  • Works on the latest Window 10 (v2004 as of this writing)
  • Saves the browser window assignments in the background (every 5 minutes)
  • Uses URL to (more reliably) identify browser windows
  • Compatible with "The Great Suspender"
  • Backup support

AHK script https://github.com/onefork/windows-desktop-switcher/releases

PM me if you need a .exe file instead.

zib
  • 31
1

I tried harrymc's solution and it worked fine on a Win10 64-bits, v1903. The solution allows to record multiple Chrome windows running in different virtual desktops (Fn+F11). If all Chrome windows appear in the same virtual desktop after reboot, using (Fn+F12) sends each Chrome window to the recorded virtual desktop.

I tried with 50 Chrome windows distributed over 10 virtual desktops. It took 2-3 seconds to generate the file.

@harrymc: Thank you very much! For some reason I need to press Fn+F11 or Fn+F12 in my laptop. The F11 and F12 keys alone do not trigger the functions of the AutoHotKey script.

MATT
  • 11
0

There's currently no way to configure plain Windows like that but this issue can be solved by using third-party lightweight utility called VDesk (https://github.com/eksime/VDesk). It allows you to create shortcuts that will start programs on specific virtual desktops.

It also allows to start programs on different virtual desktop without switching to it (in fact running that app hidden until you manually switch to that desktop) which is very handy feature.

Specifically for Chrome you can create different Windows on different desktops by creating shortcuts looking like this (and then just clicking them):

vdesk on:3 run:"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" /new-window "https://superuser.com"

(above will run superuser.com on desktop #3)

blami
  • 632
-1

It is said to be fixed since version 88 of chrome, so using the beta at this point is a solution. Or you can simply wait for its release on 19.01.2021.

There was a bug open for this at https://bugs.chromium.org/p/chromium/issues/detail?id=1065557 It was reported for Unix and X11 earlier and marked fixed there, however on my machine it doesn't work with Ubuntu and Google Chrome 87 either. 88 seems to have fixed it on my Ubuntu with a brief test.