You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can see the version here is fixed, but this is kinda incorrect - the condition to check for SessionId only makes sense if you want to extract the key dependent on the SessionId - while the latest verison here reads the key with the path as above under this condition. Before looking here I fixed it myself this way (just to show you an example):
IdLength := 32
SessionId := getSessionId()
if (SessionId) {
RegRead, CurrentDesktopId, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SessionInfo\%SessionId%\VirtualDesktops, CurrentVirtualDesktop
if (CurrentDesktopId) {
IdLength := StrLen(CurrentDesktopId)
}
}
if !CurrentDesktopId {
RegRead, CurrentDesktopId, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VirtualDesktops, CurrentVirtualDesktop
if (CurrentDesktopId) {
IdLength := StrLen(CurrentDesktopId)
}
}
(The problem with your version is that when there weren't SessionId, this script won't work, even though SessionId is not needed)
The text was updated successfully, but these errors were encountered:
I found this script here and it was kinda outdated on Windows 11. The location for the currently selected desktop is to be read by
I can see the version here is fixed, but this is kinda incorrect - the condition to check for
SessionId
only makes sense if you want to extract the key dependent on the SessionId - while the latest verison here reads the key with the path as above under this condition. Before looking here I fixed it myself this way (just to show you an example):(The problem with your version is that when there weren't
SessionId
, this script won't work, even thoughSessionId
is not needed)The text was updated successfully, but these errors were encountered: