Recent content by boossy


  1. Windows 11 Cascade Windows: possible with e.g. AutoHotkey, not with VBScript or PowerShell

    In Windows 10, I was able to use "Cascade Windows" with a simple .vbs script: set objShell = CreateObject("shell.application") call objShell.CascadeWindows() The same is possible with PowerShell: $ShellExp = New-Object -ComObject Shell.Application $ShellExp.CascadeWindows() However, in Windows...
Back
Top Bottom