Skip to content

Commit 7b05554

Browse files
authored
Update to V1.20
1 parent c601d38 commit 7b05554

10 files changed

+1188
-1273
lines changed

Changes.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Changes:
22

3+
Version 1.20, 2025-01-18
4+
- new parameters /PinActiveWindow and /UnPinActiveWindow
5+
- Windows 11: new parameter /Amimation to enable or disable animated desktop switches
6+
- nicer icon :-)
7+
- window handles can be negative
8+
39
Version 1.19, 2024-09-01
410
- faster API call FindWindow instead of EnumWindows
511
- Windows 11: animated switch to new desktop

Compile.bat

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@echo off
2-
:: Markus Scholtes, 2024
2+
:: Markus Scholtes, 2025
33
:: Compile VirtualDesktop in .Net 4.x environment
44
setlocal
55

6-
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop11.cs" /win32icon:"%~dp0MScholtes.ico"
7-
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop11-24H2.cs" /win32icon:"%~dp0MScholtes.ico"
8-
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop.cs" /win32icon:"%~dp0MScholtes.ico"
9-
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktopServer2022.cs" /win32icon:"%~dp0MScholtes.ico"
10-
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktopServer2016.cs" /win32icon:"%~dp0MScholtes.ico"
6+
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop11.cs" /win32icon:"%~dp0VirtualDesktop.ico"
7+
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop11-24H2.cs" /win32icon:"%~dp0VirtualDesktop.ico"
8+
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktop.cs" /win32icon:"%~dp0VirtualDesktop.ico"
9+
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktopServer2022.cs" /win32icon:"%~dp0VirtualDesktop.ico"
10+
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe "%~dp0VirtualDesktopServer2016.cs" /win32icon:"%~dp0VirtualDesktop.ico"
1111

1212
:: was batch started in Windows Explorer? Yes, then pause
1313
echo "%CMDCMDLINE%" | find /i "/c" > nul

README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# VirtualDesktop
22
C# command line tool to manage virtual desktops in Windows 10 and Windows 11
33

4-
**Pre-compiled binaries in Releases now**
4+
**Pre-compiled binaries in Releases**
55

6-
**Version 1.19, 2024-09-01**
7-
- faster API call FindWindow instead of EnumWindows
8-
- Windows 11: animated switch to new desktop
6+
**Version 1.20, 2025-01-18**
7+
- new parameters /PinActiveWindow and /UnPinActiveWindow
8+
- Windows 11: new parameter /Amimation to enable or disable animated desktop switches
9+
- nicer icon :-)
10+
- window handles can be negative
911

1012
(look for a powershell version here: https://github.com/MScholtes/PSVirtualDesktop or here: https://www.powershellgallery.com/packages/VirtualDesktop)
1113

12-
**With Windows 11 23H2 Release 3085 Microsoft did change the API (COM GUIDs) for accessing the functions for virtual desktops again. I provide five versions of virtualdesktop.cs now: virtualdesktop.cs is for Windows 10, virtualdesktop11.cs is for Windows 11, virtualdesktop11-24h2.cs for Windows 11 24H2 Insider, virtualdesktopserver2022.cs is for Windows Server 2022, virtualdesktopserver2016.cs is for Windows Server 2016. Using Compile.bat all executables will be generated.**
14+
**With Windows 11 23H2 Release 3085 Microsoft did change the API (COM GUIDs) for accessing the functions for virtual desktops again. I provide five versions of virtualdesktop.cs now: virtualdesktop.cs is for Windows 10, virtualdesktop11.cs is for Windows 11, virtualdesktop11-24h2.cs for Windows 11 24H2, virtualdesktopserver2022.cs is for Windows Server 2022, virtualdesktopserver2016.cs is for Windows Server 2016. Using Compile.bat all executables will be generated.**
1315

1416
## Generate:
1517
Compile with Compile.bat (no visual studio needed, but obviously Windows 10 or 11)
@@ -26,6 +28,8 @@ Virtual desktop numbers start with 0.
2628

2729
**/Break /Continue** break (default) or continue on error (short: /b and /co).
2830

31+
**/Animation:<s>** Enable switch animations (default) with 'On' or '1' and disable switch animations with 'Off' or '0' (short: /anim)(only VirtualDesktop11.exe).
32+
2933
**/List**           list all virtual desktops (short: /li).
3034

3135
**/Count**           get count of virtual desktops to pipeline (short: /c).
@@ -84,10 +88,14 @@ Virtual desktop numbers start with 0.
8488

8589
**/PinWindow:&lt;s|n&gt;**   pin process with name &lt;s&gt; or id &lt;n&gt; to all desktops (short: /pw).
8690

91+
**/PinActiveWindow** pin active window to all desktops (short: /paw).
92+
8793
**/PinWindowHandle:&lt;s|n&gt;**   pin window with text &lt;s&gt; in title or handle &lt;n&gt; to all desktops (short: /pwh).
8894

8995
**/UnPinWindow:&lt;s|n&gt;**  unpin process with name &lt;s&gt; or id &lt;n&gt; from all desktops (short: /upw).
9096

97+
**/UnPinActiveWindow** unpin active window from all desktops (short: /upaw).
98+
9199
**/UnPinWindowHandle:&lt;s|n&gt;**  unpin window with text &lt;s&gt; in title or handle &lt;n&gt; from all desktops (short: /upwh).
92100

93101
**/IsWindowPinned:&lt;s|n&gt;**  check if process with name &lt;s&gt; or id &lt;n&gt; is pinned to all desktops (short: /iwp). Returns 0 for yes, 1 for no.

ReadMe.txt

+9-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ VirtualDesktop
55

66
C# command line tool to manage virtual desktops in Windows 10 and Windows 11
77

8-
Version 1.19, 2024-09-01
9-
- faster API call FindWindow instead of EnumWindows
10-
- Windows 11: animated switch to new desktop
8+
Version 1.20, 2025-01-18
9+
- new parameters /PinActiveWindow and /UnPinActiveWindow
10+
- Windows 11: new parameter /Amimation to enable or disable animated desktop switches
11+
- nicer icon :-)
12+
- window handles can be negative
1113

1214
(look for a powershell version here:
1315
https://github.com/MScholtes/PSVirtualDesktop
@@ -18,7 +20,7 @@ https://www.powershellgallery.com/packages/VirtualDesktop)
1820
With Windows 11 23H2 Release 3085 Microsoft did change the API (COM GUIDs) for
1921
accessing the functions for virtual desktops again. I provide five versions of
2022
virtualdesktop.cs now: virtualdesktop.cs is for Windows 10, virtualdesktop11.cs
21-
is for Windows 11, virtualdesktop11-24h2.cs for Windows 11 24H2 Insider,
23+
is for Windows 11, virtualdesktop11-24h2.cs for Windows 11 24H2,
2224
virtualdesktopserver2022.cs is for Windows Server 2022,
2325
virtualdesktopserver2016.cs is for Windows Server 2016. Using Compile.bat all
2426
executables will be generated.
@@ -38,6 +40,7 @@ Parameters (leading / can be omitted or - can be used instead):
3840
/Help /h /? this help screen.
3941
/Verbose /Quiet enable verbose (default) or quiet mode (short: /v and /q).
4042
/Break /Continue break (default) or continue on error (short: /b and /co).
43+
/Animation:<s> Enable switch animations (default) with 'On' or '1' and disable switch animations with 'Off' or '0' (short: /anim)(only VirtualDesktop11.exe).
4144
/List list all virtual desktops (short: /li).
4245
/Count get count of virtual desktops to pipeline (short: /c).
4346
/GetDesktop:<n|s> get number of virtual desktop <n> or desktop with text <s> in name to pipeline (short: /gd).
@@ -67,8 +70,10 @@ Parameters (leading / can be omitted or - can be used instead):
6770
/ListWindowsOnDesktop[:<n|s>] list handles of windows on desktop number <n>, desktop with text <s> in name or desktop with number in pipeline (short: /lwod).
6871
/CloseWindowsOnDesktop[:<n|s>] close windows on desktop number <n>, desktop with text <s> in name or desktop with number in pipeline (short: /cwod).
6972
/PinWindow:<s|n> pin process with name <s> or id <n> to all desktops (short: /pw).
73+
/PinActiveWindow pin active window to all desktops (short: /paw).
7074
/PinWindowHandle:<s|n> pin window with text <s> in title or handle <n> to all desktops (short: /pwh).
7175
/UnPinWindow:<s|n> unpin process with name <s> or id <n> from all desktops (short: /upw).
76+
/UnPinActiveWindow unpin active window from all desktops (short: /upaw).
7277
/UnPinWindowHandle:<s|n> unpin window with text <s> in title or handle <n> from all desktops (short: /upwh).
7378
/IsWindowPinned:<s|n> check if process with name <s> or id <n> is pinned to all desktops (short: /iwp). Returns 0 for yes, 1 for no.
7479
/IsWindowHandlePinned:<s|n> check if window with text <s> in title or handle <n> is pinned to all desktops (short: /iwhp). Returns 0 for yes, 1 for no.

0 commit comments

Comments
 (0)