Windows沒有如MacOS在打開的相同的應用間切換的功能,比如按鍵"Alt+`",需要自己設置Autokey:
/* ;
*****************************
UTILITY FUNCTIONS
*****************************
*/
ExtractAppTitle(FullTitle) {
AppTitle := SubStr(FullTitle, InStr(FullTitle, " ", false, -1) + 1)
Return AppTitle
}
/* ;
***********************************
SHORTCUTS CONFIGURATION
***********************************
*/
; Alt + ` - Activate NEXT Window of same type (title checking) of the current APP
!`::
WinGet, ActiveProcess, ProcessName, A
WinGet, OpenWindowsAmount, Count, ahk_exe %ActiveProcess%
If OpenWindowsAmount = 1 ; If only one Window exist, do nothing
Return
Else {
WinGetTitle, FullTitle, A
AppTitle := ExtractAppTitle(FullTitle)
SetTitleMatchMode, 2
WinGet, WindowsWithSameTitleList, List, %AppTitle%
If WindowsWithSameTitleList > 1 ; If several Window of same type (title checking) exist {
WinActivate, % "ahk_id " WindowsWithSameTitleList%WindowsWithSameTitleList% ; Activate next Window
}
}
Return
寫入到autokey中就能實現在相同app之間的切換。
Windows11 批處理一鍵卸載 Microsoft Teams 聊天和刪除任務欄圖標,Windows11 最新版任務欄多了Teams聊天 應用,點擊圖標的話可能會自動安裝,雖然從設置里面可以關閉,但是有人還是覺得不方便,還有的是Teams卸載之后任務欄設置里依然有”聊天”按鈕,本批處理可以一鍵卸載Microsoft Teams聊天APP同時刪除任務欄圖標!
Microsoft Teams 適合所有人使用,無論是聊天、通話還是視頻,每個人隨時都能參與,這拉近了大家的距離。你的文檔、照片、視頻、歷史聊天記錄和會議筆記始終在這里,從而可更輕松地協作。在所需的各種應用中設置團隊空間,讓你們始終待在一個位置,而不用到處切換。只需輕觸一個按鈕,即可立即從群聊轉換到視頻會議。無論是兩個人還是 10,000 個人的團隊,都可以從任意位置共聚一處。通過群組通話、云語音郵件和呼叫轉移等高級功能,在 Microsoft Teams 中直接撥打和接聽電話。使用熟悉的應用(如 Word、PowerPoint 和 Excel)在 Microsoft Teams 中實時輕松查找、共享和編輯文件。