請選擇 進入手機版 | 繼續訪問電腦版

微剋多資訊

 找回密碼
 註冊

Sign in with google

Google帳號登入

搜索
回覆 5則 瀏覽 51411篇
Line

[問題已解決] 【win10介面問題】顯示詳細複製進度

該用戶從未簽到

升級   50.5%

發表於 2021-1-30 22:59 | 顯示全部樓層 |閱讀模式

該用戶從未簽到

升級   0%

發表於 2021-1-31 00:38 | 顯示全部樓層
  1. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager]
  2. "EnthusiastMode"=dword:00000001
複製代碼

點評

感謝分享!這操作也不須重開機就有效,更好!希望官方可以預設打開啊~~~  發表於 2021-1-31 08:16
  • 給你個讚

    foster 貢獻度 +3

1 0

使用道具

簽到天數: 9

該用戶今日未簽到

升級   100%

發表於 2021-1-31 09:02 | 顯示全部樓層
藉此主題再請問一下,工作管理員能不能也藉由regedit機碼預設顯示更多詳細資料


使用道具

該用戶從未簽到

升級   0%

發表於 2021-1-31 13:39 | 顯示全部樓層
本帖最後由 maodou 於 2021-1-31 21:28 編輯
foster 發表於 2021-1-31 09:02
藉此主題再請問一下,工作管理員能不能也藉由regedit機碼預設顯示更多詳細資料?

不是對應到一個單獨的值, 所以用PowerShell設定比較簡單
(管理員權限, 設定時工作管理員要關掉. 全新安裝的Windows 10要先跑過一次工作管理員才會有Preferences)
  1. $prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences
  2. $prefs.Preferences[28] = 0
  3. New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Force
複製代碼


或是寫成一行用Command prompt/Batch:
  1. PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "$prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences; $prefs.Preferences[28] = 0; New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Force" >$null 2>&1
複製代碼
  • 給你個讚

    foster 貢獻度 +5

使用道具

簽到天數: 9

該用戶今日未簽到

升級   100%

發表於 2021-2-1 11:35 | 顯示全部樓層
maodou 發表於 2021-1-31 13:39
不是對應到一個單獨的值, 所以用PowerShell設定比較簡單
(管理員權限, 設定時工作管理員要關掉. 全新安裝 ...

PowerShell單行程式碼,進入系統執行OK,但要整合至SetupComplete.cmd似乎有難度,是否有整合至SetupComplete.cmd的寫法?
=====

另外,顯示詳細複製進度整合至SetupComplete.cmd測試已成功,系統一安裝完畢馬上生效。

reg load HKLM\DEFAULT %SystemDrive%\Users\Default\ntuser.dat
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" /v EnthusiastMode /t REG_DWORD /d 1 /f
reg unload HKLM\DEFAULT

使用道具

該用戶從未簽到

升級   0%

發表於 2021-2-1 12:45 | 顯示全部樓層
foster 發表於 2021-2-1 11:35
PowerShell單行程式碼,進入系統執行OK,但要整合至SetupComplete.cmd似乎有難度,是否有整合至SetupComp ...
  1. PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "Start-Process -FilePath Taskmgr; Start-Sleep -Seconds 3; $taskmgr = Get-Process Taskmgr -ErrorAction SilentlyContinue; if ($taskmgr) { $taskmgr.CloseMainWindow() }; Start-Sleep -Seconds 3" >$null 2>&1
  2. PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "$prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences; $prefs.Preferences[28] = 0; New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Force" >$null 2>&1
  3. reg load HKLM\DEFAULT %SystemDrive%\Users\Default\ntuser.dat >$null 2>&1
  4. reg copy "HKCU\Software\Microsoft\Windows\CurrentVersion\TaskManager" "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\TaskManager" /s /f >$null 2>&1
  5. reg unload HKLM\DEFAULT >$null 2>&1
複製代碼
  • 經測試後有效,讚!

    foster 貢獻度 +5

1 0

使用道具

您需要登入後才可以回帖 登入 | 註冊

本版積分規則

小黑屋|Archiver|微剋多資訊(MicroDuo)

GMT+8, 2024-3-28 20:56

Discuz! X

© 2009-2023 Microduo

快速回覆 返回頂部 返回列表