Fw: [AHK-] WIN10如何快速開關自動隱藏工作列?內有簡陋方案

看板EzHotKey作者 (與我無關~~)時間4年前 (2020/03/06 20:28), 4年前編輯推噓1(100)
留言1則, 1人參與, 4年前最新討論串1/1
※ [本文轉錄自 Windows 看板 #1UOa2LmU ] 作者: LastAttack (與我無關~~) 看板: Windows 標題: [ W10] 如何快速開關自動隱藏工作列?內有AHK簡陋方案 時間: Fri Mar 6 20:22:42 2020 WIN10 專業版 2004 想做的事如題,有時想靜靜地看著完整的桌面又要點來點去很煩 印象中以前有些小檔案會對應到控制台中的選項,我就開始找啊找,最後終於找到 C:\Users\使用者名稱\AppData\Local\Packages\ windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState\Indexed\Settings\zh-TW\ AAA_SystemSettings_Taskbar_Autohide.settingcontent-ms 丟進Notepad後長怎樣我放文末,總之就是我看不懂,code裡唯一的網址已經失效,看起來 很關鍵的HighKeywords、Keywords、LowKeywords一起餵狗也查不出什麼所以然來。 = =文寫到一半才想到搜副檔名.settingcontent-ms,目前查到都是能被拿來當攻擊破口XD 暫且使用AutoHotKey,寫法如下,有同樣需求的人就請自行取用吧~ 就把那檔案做個捷徑 放在C槽第一層,那段就能用了,如果電腦跑比較慢就把1800改成更高的數字。 !H:: RunWait,C:\AAA_SystemSettings_Taskbar_Autohide.lnk Sleep 1800 Send {space} Send {alt down}{F4}{alt up} 弄個捷徑擺在C:\,是因為原本路徑中使用者名稱那邊有用到中文,解碼問題之類的會導致 找不到檔案。 這樣是只要ALT+H就好,但耗時就稍嫌久,想請教有沒有更直接的方法OTZ ==下為AAA_SystemSettings_Taskbar_Autohide.settingcontent-ms== <?xml version="1.0" encoding="utf-8"?> <PCSettings> <SearchableContent xmlns="" rel="nofollow">http://schemas.microsoft.com/Search/2013/SettingContent"> <ApplicationInformation> <AppID>windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel</AppID> <Glyph>Ⓣ</Glyph> </ApplicationInformation> <SettingIdentity> <PageID>SettingsPageTaskbar</PageID> <SettingID>SystemSettings_Taskbar_Autohide</SettingID> <GroupID>SettingsGroupTaskbar</GroupID> </SettingIdentity> <SettingInformation> <Description>@{windows?ms-resource://Windows.UI.SettingsAppThreshold/Sear chResources/SystemSettings_Taskbar_Autohide/Description}</Description> <HighKeywords>@{windows?ms-resource://Windows.UI.SettingsAppThreshold/Sea rchResources/SystemSettings_Taskbar_Autohide/HighKeywords}</HighKeywords> <Keywords>@{windows?ms-resource://Windows.UI.SettingsAppThreshold/SearchR esources/SystemSettings_Taskbar_Autohide/Keywords}</Keywords> <LowKeywords>@{windows?ms-resource://Windows.UI.SettingsAppThreshold/Sear chResources/SystemSettings_Taskbar_Autohide/LowKeywords}</LowKeywords> </SettingInformation> </SearchableContent> </PCSettings> -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.116.102.160 (臺灣) ※ 文章網址: https://www.ptt.cc/bbs/Windows/M.1583497365.A.C1E.html ※ 編輯: LastAttack (140.116.102.160 臺灣), 03/06/2020 20:27:48 ※ 發信站: 批踢踢實業坊(ptt.cc) ※ 轉錄者: LastAttack (140.116.102.160 臺灣), 03/06/2020 20:28:03

03/07 10:24, 4年前 , 1F
用WinHide、WinShow就好了吧
03/07 10:24, 1F
文章代碼(AID): #1UOa7Kmw (EzHotKey)