我一直在 Google 上進行一些研究,但我找不到管理啟用指標陰影的 Windows 登錄是什麼。我需要找到它對我的 Citrix Gold 映像進行全域更新。
答案1
看一看:
這是透過建立一個基於使用者的 GPO 設定以下註冊表項來完成的:
Key: HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects
Value Name: VisualFXSetting
Value Type: dword
Value data: 3
答案2
接受的答案僅部分正確。
該VisualFXSetting
值僅控制如何決定設置,如System Properties\Advanced system settings\Advanced tab\Performance Options
對話框中所示:
0 = Let Windows choose what's best for my computer
1 = Adjust for best appearance
2 = Adjust for best performance
3 = Custom
當然,在我們的例子中,我們想使用 3。
一旦我們選擇了 3 個,我們的工作就變得更加困難。控制設定本身的資料稍微複雜一些,涉及在此註冊表值設定的十六進位條目(位元組):
HKEY_CURRENT_USER\Control Panel\Desktop\UserPreferencesMask
出於我們的目的,我們只對前三個位元組感興趣,即:
9E 3E 07
位元組是透過這些二進位集的轉換來決定的:
10011110 00111110 00000111
(我們可以使用 Windows 計算器進行轉換;我們將按 Alt+3 進入程式設計師視圖,並選擇 Word 作為字號。)
二進位集是根據這些模板計算的:
^^^ ^ ^^ ^
1001ABC0 00D1EF10 00000G11
這些字母代表此清單中的條目:
A - Smooth-scroll list boxes
B - Slide open combo boxes
C - Fade or slide menus into view
D - Show shadows under mouse pointer
E - Fade or slide ToolTips into view
F - Fade out menu items after clicking
G - Show shadows under windows
因此,舉例來說,如果我們想關閉Smooth-scroll list boxes
第 1 個集合的第 5 位(從零開始的清單上的第 4 位)之外的所有設定為 1 之外的所有內容:
^
10011000 00010010 00000011
然後使用Windows計算器將其轉換為十六進位:
98 12 03
一切都在:
10011110 00111110 00000111 = 9E 3E 07
一切關閉:
10010000 00010010 00000011 = 90 12 03