如何快速開關自動隱藏工作列?內有AHK簡陋方案 - Windows
By Megan
at 2020-03-06T20:22
at 2020-03-06T20:22
Table of Contents
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="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>
--
想做的事如題,有時想靜靜地看著完整的桌面又要點來點去很煩
印象中以前有些小檔案會對應到控制台中的選項,我就開始找啊找,最後終於找到
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="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>
--
Tags:
Windows
All Comments
By Hamiltion
at 2020-03-08T21:58
at 2020-03-08T21:58
By Faithe
at 2020-03-12T21:37
at 2020-03-12T21:37
By Queena
at 2020-03-13T23:30
at 2020-03-13T23:30
By Bennie
at 2020-03-14T04:18
at 2020-03-14T04:18
By Liam
at 2020-03-18T05:29
at 2020-03-18T05:29
By Hedwig
at 2020-03-18T12:23
at 2020-03-18T12:23
Related Posts
win10怎麼自動關機
By Kama
at 2020-03-06T20:14
at 2020-03-06T20:14
動態磚是有什麼原罪嗎?
By Joseph
at 2020-03-06T13:11
at 2020-03-06T13:11
除了微軟windows內建字體,安裝思源字體
By Valerie
at 2020-03-06T12:41
at 2020-03-06T12:41
nokia 1520 電源按鈕修復
By Victoria
at 2020-03-06T11:25
at 2020-03-06T11:25
買了一年保的SP7想買Complete請益
By Ina
at 2020-03-06T10:41
at 2020-03-06T10:41