jmsdhn 發表於 2021-1-30 22:59

【win10介面問題】顯示詳細複製進度

本帖最後由 jmsdhn 於 2021-1-31 08:17 編輯

打擾了
這個介面


剛安裝好的win10
預設是較少資料狀態
它是否有REG可以設定成顯示詳細資料
想加入到剛裝好的優化中
感謝分享~


maodou 發表於 2021-1-31 00:38


"EnthusiastMode"=dword:00000001

foster 發表於 2021-1-31 09:02

藉此主題再請問一下,工作管理員能不能也藉由regedit機碼預設顯示更多詳細資料?

https://i.imgur.com/S1AkOWJ.jpg

maodou 發表於 2021-1-31 13:39

本帖最後由 maodou 於 2021-1-31 21:28 編輯

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



不是對應到一個單獨的值, 所以用PowerShell設定比較簡單
(管理員權限, 設定時工作管理員要關掉. 全新安裝的Windows 10要先跑過一次工作管理員才會有Preferences)$prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences
$prefs.Preferences = 0
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Forcehttps://i.imgur.com/fdQMhmm.png

或是寫成一行用Command prompt/Batch:PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "$prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences; $prefs.Preferences = 0; New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Force" >$null 2>&1https://i.imgur.com/P1Mi9Tw.png

foster 發表於 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

maodou 發表於 2021-2-1 12:45

foster 發表於 2021-2-1 11:35
PowerShell單行程式碼,進入系統執行OK,但要整合至SetupComplete.cmd似乎有難度,是否有整合至SetupComp ...

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
PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "$prefs = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences; $prefs.Preferences = 0; New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager -Name Preferences -Type Binary -Value $prefs.Preferences -Force" >$null 2>&1
reg load HKLM\DEFAULT %SystemDrive%\Users\Default\ntuser.dat >$null 2>&1
reg copy "HKCU\Software\Microsoft\Windows\CurrentVersion\TaskManager" "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\TaskManager" /s /f >$null 2>&1
reg unload HKLM\DEFAULT >$null 2>&1
頁: [1]
查看完整版本: 【win10介面問題】顯示詳細複製進度