-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think this might not work with Win11 Dev Insider build 23606 #78
Comments
Hello @phazei, I ask for your understanding. Greetings Markus |
Can confirm. VirtualDesktop11-23H2.exe no longer works on 23H2 after installing the january update KB5034204. Changing UID "A3175F2D-239C-4BD2-8AA0-EEBA8B0B138E" to "4970BA3D-FD4E-4647-BEA3-D89076EF4B9C" solved the issue: --- VirtualDesktop11-23H2.cs 2024-01-24 11:44:46.045431100 +0100
+++ VirtualDesktop11-23H2-KB5034204.cs 2024-01-24 11:49:26.584646200 +0100
@@ -161,7 +161,7 @@
[ComImport]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
- [Guid("A3175F2D-239C-4BD2-8AA0-EEBA8B0B138E")]
+ [Guid("4970BA3D-FD4E-4647-BEA3-D89076EF4B9C")]
internal interface IVirtualDesktopManagerInternal
{
int GetCount(); |
Hello, does this apply only to the Insider Dev Channel? What about the Canary Channel, Beta Channel or Release Preview Channel and the productive version? Greetings Markus |
Productive. I don't use any beta/preview/insider versions. It's the regular 23h2 with the january update from today. |
Ok, this is a very import information. I will check this. Greetings Markus |
Hey @MScholtes, The GUID of the This is the current, working GUID for the interface: You can also find the full dump here: Other than the GUID change, a new argument has also been introduced to the |
Hello out there, I can commit the change with Windows 11 and the preview update to Win 11 23H2 (raises build from 3007 to 3085). The suggested solution by @slnz00 works. However, I will wait until the next mandatory update before making any adjustments, otherwise it will no longer work with Windows 11 without this update. I'm a bit confused about the GUID "4970BA3D-FD4E-4647-BEA3-D89076EF4B9C" @willuhn has reported. Greetings |
There are two symbols associated with this GUID: |
OK, I uploaded a test version, which includes the "53F5CA0B-158F-4124-900C-057158060B27" change. It is called VirtualDesktop11-3085.cs and VirtualDesktop11-3085.exe. It would be very helpful if soneone with an Insider version of Windows would test this too (please include build numbers in replies). Greetings Markus |
Hello @iamsteelone, are you sure you are running Windows 11 23H2 22631.3085? In all my tests VirtualDesktop11-3085.exe worked. What commands are you executing? Does "VirtualDesktop11-3085.exe LIST" work, what is the current situation? Greetings Markus |
Turned out a good old fashioned “turning it off and on again” was needed. All sorted now
From: MScholtes ***@***.***>
Sent: Wednesday, January 31, 2024 6:32 PM
To: MScholtes/VirtualDesktop ***@***.***>
Cc: Paul Bailey ***@***.***>; Mention ***@***.***>
Subject: Re: [MScholtes/VirtualDesktop] I think this might not work with Win11 Dev Insider build 23606 (Issue #78)
Hello @iamsteelone <https://github.com/iamsteelone> ,
are you sure you are running Windows 11 23H2 22631.3085? In all my tests VirtualDesktop11-3085.exe worked.
What commands are you executing? Does "VirtualDesktop11-3085.exe LIST" work, what is the current situation?
Greetings Markus
—
Reply to this email directly, view it on GitHub <#78 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/AHADJYUOZXTFDKU6ZK2UP43YRKEY7AVCNFSM6AAAAABBICFZTKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSMJZGY4TSMZVG4> .
You are receiving this because you were mentioned. <https://github.com/notifications/beacon/AHADJYVSHD42QFMDW7KPGHTYRKEY7A5CNFSM6AAAAABBICFZTKWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTTSNREZ2.gif> Message ID: ***@***.*** ***@***.***> >
|
Hello, I released new versions today fixing the February monthly security update. Greetings Markus |
PS C:\Users\jose> M:\software\VirtualDesktop-master\VirtualDesktop.exe "-Switch:Desktop 2" Unhandled Exception: System.TypeInitializationException: The type initializer for 'VirtualDesktop.DesktopManager' threw an exception. ---> System.InvalidCastException: Specified cast is not valid. This is failing on Version 10.0.22631 Build 22631 Windows 11 I fixed by downloading the windows 11 version (VirtualDesktop11.exe) |
Issues solved (maybe new issues coming with 24H2) |
I don't use this project, but I use another that used this project as reference. So I tried to update that project with the newer Win11 23H2 GUID's and method prototypes you were using but that didn't work. Then I found a 3rd project that had a similar issue someone recently reported and it turned out the newer Win 11 insider dev build uses a newer GUID that I don't think I saw you use here in this project. I tried it out with my code and it did indeed seem to be the issue. So I thought I'd point it out so you don't need to go hunting for the new GUID when the issue turns up. You can find the new GUID in my pr for the first project: FuPeiJiang/VD.ahk#62
The text was updated successfully, but these errors were encountered: