Windows 安全開機憑證到期
重要: 大部分 Windows 裝置使用的安全開機憑證設定為從 2026 年 6 月開始到期。 如果未及時更新,這可能會影響某些個人和商務裝置安全開機的能力。 為避免中斷,建議您檢閱指導方針,並採取行動事先更新憑證。 如需詳細資料和準備步驟,請參閱 Windows 安全開機憑證到期和 CA 更新
摘要
此更新改進了 Windows 11 版本 24H2、Windows 11、版本 25H2 和 Windows Server 2025 中的 WinRE) (Windows 復原環境。
如何取得此更新
安裝此更新
若要安裝此更新,請使用下列其中一個發行管道。
|
可供使用 |
後續步驟 |
|
|
可透過 Windows Update 取得此更新。 將自動下載並安裝此更新。 |
|
可供使用 |
後續步驟 |
|
|
若要取得此更新的獨立套件,請移至 Microsoft Update 目錄 網站。 若要從 Update Catalog 下載更新,請參閱關於如何從 Windows Update Catalog 下載更新的步驟。 若要手動安裝此更新,請參閱 將更新套件新增至 Windows RE。 |
|
可供使用 |
後續步驟 |
|
|
如果您設定產品和分類,此更新會自動與 WSUS) 同步處理Windows Server Update Services (如下所示: 適用於 Windows 11 版本 24H2 和 25H2
適用於 Windows Server 2025
|
|
先決條件 |
套用此更新沒有任何先決條件。 |
|
重新啟動資訊 |
套用此更新之後,您不必重新啟動電腦。 |
|
移除資訊 |
此更新套用至 Windows 映像後,即無法移除。 |
|
更新取代資訊 |
此更新取代了先前發布的更新 KB5070762。 |
|
確認此更新的安裝 |
安裝此更新後,裝置上安裝的 WinRE 版本應該是 10.0.26100.7014。 |
若要安裝 WinRE 版本,請使用系統管理員認證執行下列 PowerShell 指令碼 "GetWinReVersion.ps1"。 執行指令碼後,您應該會收到已安裝的 WinRE 版本,如下列範例所示:
GetWinReVersion.ps1 PowerShell 指令碼
################################################################################################
#
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
################################################################################################
# Function to get WinRE path
function GetWinREPath {
$WinRELocation = (reagentc /info | Select-String "Windows RE location")
if ($WinRELocation) {
return $WinRELocation.ToString().Split(':')[-1].Trim()
} else {
Write-Host "Failed to find WinRE path" -ForegroundColor Red
exit 1
}
}
# Creates and needs to be return the mount directory
function GetMountDir {
# systemdirve\mnt
$MountDir = "$env:SystemDrive\mnt"
if (-not (Test-Path $MountDir)) {
New-Item -ItemType Directory -Path $MountDir -Force | Out-Null
}
return $MountDir
}
# Function to get WinRE version
function GetWinREVersion {
$mountedPath = GetMountDir
$filePath = "$mountedPath\Windows\System32\winpeshl.exe"
$WinREVersion = (Get-Item $filePath).VersionInfo.FileVersionRaw.Revision
return [int]$WinREVersion
}
# Main Execution
$WinREPath = GetWinREPath
# Make dir C:\mnt if not exists
$TempDir = GetMountDir
# Get the read write permission for this directory
if (-not (Test-Path $TempDir)) {
New-Item -ItemType Directory -Path $TempDir -Force | Out-Null
}
# Mount WinRE image
dism /Mount-Image /ImageFile:"$WinREPath\winre.wim" /Index:1 /MountDir:"$TempDir"
$WinREVersion = GetWinREVersion
Write-Host "WinRE Version: $WinREVersion" -ForegroundColor Cyan
dism /Unmount-Image /MountDir:"$TempDir" /Discard
Remove-Item -Path $TempDir -Force -Recurse
與 Windows 修復環境 (WinRE) 相關的 WinREAgent 記錄事件,主要記錄關於建立、修改及使用復原影像的詳細資料。 在此案例中,我們在尋找 事件識別碼: 4501維護成功 事件。 如果您因為環境中可能發生的空間限制而找不到 WinREAgent 維護事件,建議您使用 DISM 命令。
-
開啟 Windows Search 列。 若要這麼做,請以滑鼠右鍵按一下 [開始],然後按一下 [搜尋]。
-
在 [搜尋] 列中,輸入 [事件檢視器],然後按一下 [事件檢視器]。
-
展開 [Windows 記錄檔],然後按一下 [系統]。
-
在右側瀏覽窗格的 [動作] 底下,按一下 [尋找]。
-
在 [尋找內容:] 方塊中,輸入 [WinREAgent],然後按一下 [尋找下一筆]。
-
按一下 [取消] 以關閉 [尋找] 對話方塊。 WinREAgent 維護事件應該會顯示在中間下方窗格中,您應該會在 [一般] 索引標籤上看到類似的訊息:
維護成功。 Windows 修復環境版本現在是: 10.0.22621.4742
此範例中的 WinRE 版本為 10.0.22621.4742。
-
若要檢視 WinREAgent 維護事件的 [事件屬性] 窗格,請以滑鼠右鍵按一下 [系統] 窗格 (頂部中間窗格) 中的 [WinREAgent]項目,然後按兩一下 [事件屬性]。
-
開啟提高權限的 Windows 命令提示字元。 若要這麼做,請按 Windows 鍵、輸入 cmd、以滑鼠右鍵按一下 [命令提示字元],然後按一下 [以系統管理員身分執行]。
-
在命令提示字元中輸入 reagentc /info,然後按 Enter。
-
記下 Windows RE 位置的路徑。 在此範例中,位置為 \\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE。 此路徑可能會根據您的 Windows 安裝而有所不同。
-
在命令提示字元中,使用 DISM 命令擷取 Windows 修復環境 (WinRE) 資訊。 在此範例中,輸入下列命令,然後按 Enter:
Dism /Get-ImageInfo /ImageFile:\\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE\winre.wim /index:1
附註 WinRE 影像檔案的預設名稱是 winre.wim。 在您的環境中,WinRE 影像檔案的名稱可能會有所不同。 此外,預設 winre.wim 檔案的索引編號為 1。 在您的環境中,索引編號可能會有所不同。
-
WinRE 影像檔案資訊會如下列範例所示傳回:
此範例中的 WinRE 版本為 10.0.22621.4742。
檔案詳細資訊
此軟體更新的英文 (美國) 版會安裝具有下列屬性的檔案。 此更新可能包含其他語言的檔案。
|
檔案名稱 |
檔案版本 |
日期 |
時間 |
檔案大小 |
|
storufs.inf |
無版本 |
17-10月-25 |
18:25 |
26,264 |
|
storufs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
148,896 |
|
tpm.inf |
無版本 |
17-10月-25 |
18:25 |
11,804 |
|
tpm.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
374,168 |
|
USB.inf 的 |
無版本 |
17-10月-25 |
18:25 |
41,432 |
|
usbccgp.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
222,616 |
|
usbhub3.inf 的 |
無版本 |
17-10月-25 |
18:25 |
11,296 |
|
USBHUB3.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
746,880 |
|
usbport.inf |
無版本 |
17-10月-25 |
18:25 |
77,436 |
|
usbohci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
69,632 |
|
usbport.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
509,352 |
|
usbhub.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
570,792 |
|
usbehci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
128,424 |
|
usbuhci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
73,728 |
|
usbd.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,160 |
|
usbxhci.inf |
無版本 |
17-10月-25 |
18:25 |
8,444 |
|
USBXHCI.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
730,512 |
|
UsbXhciCompanion.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
187,400 |
|
hvloader.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,808 |
|
hvax64.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,971,600 |
|
hvix64.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,053,504 |
|
skci.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
340,288 |
|
iumbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,064 |
|
iumdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,672 |
|
tprtdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
456,008 |
|
vertdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
216,352 |
|
ucrtbase_enclave.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
646,048 |
|
veinterop.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,912 |
|
securekernel.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,320,320 |
|
VbsSiPolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
68,351 |
|
SDFHost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
63,480 |
|
IumSdk.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,408 |
|
Facilitator.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,123,744 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,984 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,960 |
|
chs_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
3,696,736 |
|
chs_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
3,696,752 |
|
msyh_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
189,936 |
|
msyh_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
189,948 |
|
msyhn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
187,932 |
|
msyhn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
187,924 |
|
cht_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
3,879,440 |
|
cht_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
3,879,404 |
|
msjh_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
201,324 |
|
msjh_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
201,348 |
|
msjhn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
199,200 |
|
msjhn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
199,160 |
|
wgl4_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
50,080 |
|
wgl4_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
50,096 |
|
segmono_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
45,852 |
|
segmono_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
45,848 |
|
segoe_slboot.ttf |
無版本 |
17-10月-25 |
18:25 |
103,020 |
|
segoe_slboot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
103,004 |
|
segoen_slboot.ttf |
無版本 |
17-10月-25 |
18:25 |
102,708 |
|
segoen_slboot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
102,708 |
|
jpn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
1,986,880 |
|
jpn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
1,986,884 |
|
meiryo_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
175,988 |
|
meiryo_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
175,988 |
|
meiryon_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
174,168 |
|
meiryon_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
174,148 |
|
kor_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
2,374,016 |
|
kor_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
2,374,012 |
|
malgun_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
201,972 |
|
malgun_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
201,972 |
|
malgunn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
199,428 |
|
malgunn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
199,428 |
|
efisys.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_EX.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_noprompt.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_noprompt_EX.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,712 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,712 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,032 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,032 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,056 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
91,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
91,056 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,712 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,712 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,640 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,688 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,688 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
81,328 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
81,328 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
80,816 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
80,816 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,104 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,080 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,080 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,664 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
95,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
95,664 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,128 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,208 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,208 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,720 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,720 |
|
tcblaunch.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
975,696 |
|
tcbloader.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
316,816 |
|
DrtmAuthTxt.wim |
無版本 |
17-10月-25 |
18:25 |
23,167 |
|
bootmgfw.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,855,368 |
|
bootmgfw_EX.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,855,192 |
|
安全啟動恢復.efi |
無版本 |
17-10月-25 |
18:25 |
164,752 |
|
bootmgr.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,837,416 |
|
bootmgr_EX.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,837,416 |
|
boot.stl |
無版本 |
17-10月-25 |
18:25 |
11,030 |
|
boot.pnd.stl |
無版本 |
17-10月-25 |
18:25 |
11,733 |
|
winsipolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
10,341 |
|
winload.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,228,680 |
|
bootux.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,964,352 |
|
winload.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,866,176 |
|
winload.efi |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,268,440 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
183,312 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
691,520 |
|
BootMenuUX.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
241,664 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,712 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,840 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,064 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,056 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
49,152 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
bootim.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
driversipolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
229,162 |
|
cng.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
927,000 |
|
ci.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,108,832 |
|
驅動程式.stl |
無版本 |
17-10月-25 |
18:25 |
33,360 |
|
上一頁.driver.stl |
無版本 |
17-10月-25 |
18:25 |
33,360 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
59,304 |
|
symcryptk.dll |
103.9.1.0 |
17-10月-25 |
18:25 |
58,776 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
121,288 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
480,680 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
300,456 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,808 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
120,192 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
95,656 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
472,472 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,976 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
337,320 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
132,496 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,968 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,504 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,016 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,432 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,552 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,240 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
989,024 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
253,528 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
73,728 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
296,352 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
648,576 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
232,864 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
559,280 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
55,152 |
|
fbwf.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,464 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,720 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
718,208 |
|
diagER.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,752 |
|
hwcompat.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
243,088 |
|
hwcompat.txt |
無版本 |
17-10月-25 |
18:25 |
957,123 |
|
hwexclude.txt |
無版本 |
17-10月-25 |
18:25 |
51 |
|
icbexclusion.inf |
無版本 |
17-10月-25 |
18:25 |
7,222 |
|
migapp.xml |
無版本 |
17-10月-25 |
18:25 |
654,548 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,311,672 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
288,160 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
migisol.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
148,888 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,369,472 |
|
migsys.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
464,272 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
386,456 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
488,872 |
|
offline.xml |
無版本 |
17-10月-25 |
18:25 |
44,831 |
|
oscomps.xml |
無版本 |
17-10月-25 |
18:25 |
449,323 |
|
osfilter.inf 的 |
無版本 |
17-10月-25 |
18:25 |
21,299 |
|
pnppropmig.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
107,904 |
|
ReserveManager.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
345,504 |
|
setupplatform.cfg |
無版本 |
17-10月-25 |
18:25 |
15,971 |
|
setupplatform.dll |
1.97.26100.7014 |
17-10月-25 |
18:25 |
9,827,744 |
|
setupplatform.exe |
1.97.26100.7014 |
17-10月-25 |
18:25 |
255,360 |
|
SFCN.dat |
無版本 |
17-10月-25 |
18:25 |
18:24 |
|
SFLCID.dat |
無版本 |
17-10月-25 |
18:25 |
1,644 |
|
SFLISTW7.dat |
無版本 |
17-10月-25 |
18:25 |
1,703,368 |
|
SFLISTW8.dat |
無版本 |
17-10月-25 |
18:25 |
2,608,858 |
|
SFLISTWB.dat |
無版本 |
17-10月-25 |
18:25 |
3,172,904 |
|
SFLISTWT.dat |
無版本 |
17-10月-25 |
18:25 |
4,935,402 |
|
SFLISTRS1.dat |
無版本 |
17-10月-25 |
18:25 |
5,593,182 |
|
SFPAT.inf |
無版本 |
17-10月-25 |
18:25 |
11,602 |
|
SFPATW7.inf |
無版本 |
17-10月-25 |
18:25 |
17,396 |
|
SFPATW8.inf |
無版本 |
17-10月-25 |
18:25 |
79,818 |
|
SFPATWB.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
91,635 |
|
SFPATWT.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
165,729 |
|
SFPATRS1.inf |
無版本 |
17-10月-25 |
18:25 |
169,730 |
|
unbcl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,090,984 |
|
upgradeagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,306,880 |
|
upgradeagent.xml |
無版本 |
17-10月-25 |
18:25 |
70,907 |
|
upgrade_comp.xml |
無版本 |
17-10月-25 |
18:25 |
6,054 |
|
upgrade_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
211,949 |
|
upgrade_data.xml |
無版本 |
17-10月-25 |
18:25 |
41,750 |
|
upgrade_frmwrk.xml |
無版本 |
17-10月-25 |
18:25 |
19,157 |
|
upgWow_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
114,707 |
|
uninstall.xml |
無版本 |
17-10月-25 |
18:25 |
4,639 |
|
uninstall_data.xml |
無版本 |
17-10月-25 |
18:25 |
11,122 |
|
wdsutil.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
353,688 |
|
WinSetupMon.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupMon.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
169,376 |
|
actionqueue.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,672 |
|
appcompat_detailed.xsl |
無版本 |
17-10月-25 |
18:25 |
13,608 |
|
appcompat_detailed_bidi.xsl |
無版本 |
17-10月-25 |
18:25 |
13,732 |
|
cdplib.mof |
無版本 |
17-10月-25 |
18:25 |
1,976 |
|
cdplibuninstall.mof |
無版本 |
17-10月-25 |
18:25 |
571 |
|
dpx.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,103,264 |
|
UpdateCompression.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
619,936 |
|
itgtupg.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
117,096 |
|
migtestplugin.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,144 |
|
msdelta.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
595,368 |
|
mspatcha.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
83,328 |
|
smiengine.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
927,104 |
|
wcmtypes.xsd |
無版本 |
17-10月-25 |
18:25 |
1,047 |
|
wdsupgcompl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,472 |
|
auditetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,968 |
|
cmisetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,968 |
|
etwproviderinstall.vbs |
無版本 |
17-10月-25 |
18:25 |
6,868 |
|
setupcletw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
31,088 |
|
winsetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,160 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,224 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,736 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,736 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,752 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,224 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
2,922,776 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
286,720 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
438,272 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
121,264 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
836,152 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,170,664 |
|
dxgkrnl.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,182,904 |
|
cdd.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
335,872 |
|
dxgmms1.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
546,216 |
|
dxgmms2.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,201,536 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,016 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,008 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,096 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,104 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,136 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,008 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,024 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,373,304 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,311,648 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,369,512 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
288,152 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
329,104 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
386,448 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
488,864 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,712 |
|
SFLISTXP.dat |
無版本 |
17-10月-25 |
18:25 |
1,459,226 |
|
SFLISTLH.dat |
無版本 |
17-10月-25 |
18:25 |
3,347,940 |
|
SFPATXP.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
4,355 |
|
SFPATLH.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
8,678 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
88,232 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
18:25 |
699,808 |
|
netio.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
755,096 |
|
ncsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
708,608 |
|
netprofmsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,105,344 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
49,152 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,522,008 |
|
ntoskrnl.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,973,496 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,162,576 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
20:35 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,016 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,263 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
3,659 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,091 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,166 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,272 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,348 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,088 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,399 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,908 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,089 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,099 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,093 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,106 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
3,348 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,117 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,240 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,133 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,718 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
06:17 |
|
試劑.admx |
無版本 |
17-10月-25 |
18:25 |
1,240 |
|
reagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
742,784 |
|
reagent.xml |
無版本 |
17-10月-25 |
18:25 |
837 |
|
設定平台.cfg |
無版本 |
17-10月-25 |
18:25 |
22,945 |
|
wdscore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
279,952 |
|
WinSetupBoot.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupBoot.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
112,016 |
|
wdsclientapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
268,632 |
|
wdscsl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
112,040 |
|
wdsimage.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
129,368 |
|
wdstptc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
219,504 |
|
fvevol.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
972,184 |
|
dumpfve.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,488 |
|
bcd.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
162,584 |
|
bootsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
303,096 |
|
hwreqchk.dll |
無版本 |
17-10月-25 |
18:25 |
439,704 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
955,928 |
|
utcapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
66,960 |
|
wimgapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
910,760 |
|
wdscommonlib.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
341,408 |
|
dismapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,250,704 |
|
dismcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
480,640 |
|
dismcoreps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,784 |
|
dismprov.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
300,440 |
|
folderprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
95,632 |
|
imagingprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
247,200 |
|
logprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
189,824 |
|
vhdprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
599,424 |
|
wimprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
697,744 |
|
unattend.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
374,184 |
|
wpx.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,422,720 |
|
locale.nls |
無版本 |
17-10月-25 |
18:25 |
862,800 |
|
nlsbres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
103,808 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,800 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
691,520 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
749,568 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,323,008 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,400,832 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
183,272 |
|
localkdcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
884,736 |
|
LsaIso.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
398,176 |
|
iumcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
100,632 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
113,024 |
|
ResetEngine.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,921,856 |
|
ResetTelemetry.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
570,752 |
|
ResetEngine.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
42,384 |
|
ResetPluginHost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
57,344 |
|
srms.dat |
無版本 |
17-10月-25 |
18:25 |
60,961 |
|
sysreset.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
487,424 |
|
ResetEngOnline.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
229,376 |
|
SysResetErr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,176 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
tcpip.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,499,424 |
|
FWPKCLNT.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
583,040 |
|
tcpipreg.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,016 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
262,144 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
269,824 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,216 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
269,312 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,632 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,192 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
259,072 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
252,928 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
252,416 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,704 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
263,168 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,264 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,752 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
262,656 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
263,680 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
249,344 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
249,856 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
71,704 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
117,200 |
|
tbs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
79,232 |
|
usodocked.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
651,264 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
8acdd7e8a35f165b675b664e7ef8753ef4782f32.xml |
無版本 |
17-10月-25 |
18:25 |
3,314 |
|
72aceda3d9ebaa195b776ea9042fdf4dc3d29834.xml |
無版本 |
17-10月-25 |
18:25 |
2,496 |
|
7bc20c224f17145165aedb3fce9bda4f3c563cd7.xml |
無版本 |
17-10月-25 |
18:25 |
2,344 |
|
465bb23da8d1bea1a024758ba463bc1a7c487362.xml |
無版本 |
17-10月-25 |
18:25 |
2,458 |
|
7106fe8ce0b33cfdfee8b58e7e1b0a812935905e.xml |
無版本 |
17-10月-25 |
18:25 |
2,344 |
|
518f3ea9dc67aa5af7eb2840a6f77c874c2b2a17.xml |
無版本 |
17-10月-25 |
18:25 |
2,476 |
|
99c5248bd8c3356e9a42f332cab9b22eae3856df.xml |
無版本 |
17-10月-25 |
18:25 |
2,488 |
|
ef338bad6c4b025dc9c8f4f87a98276b2139d403.xml |
無版本 |
17-10月-25 |
18:25 |
2,482 |
|
0e0337eedd34f1bed8e9bc3202a2754e48b705af.xml |
無版本 |
17-10月-25 |
18:25 |
2,500 |
|
4ba05104f3d293466a50d8de04318624ab592070.xml |
無版本 |
17-10月-25 |
18:25 |
2,476 |
|
81d5c60cdaa2f6bac600452c12eac91e3823d9ef.xml |
無版本 |
17-10月-25 |
18:25 |
3,876 |
|
90eaab3b92938b566b871d11d7a2c86b081b26d4.xml |
無版本 |
17-10月-25 |
18:25 |
2,460 |
|
c20df1ed8df28c31d513bd896b58980c00c8b298.xml |
無版本 |
17-10月-25 |
18:25 |
878 |
|
5c7e9e098d198f0114f76066999378607084a638.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
68feea34ca8e40dee5faab63604db4cd1d7a3e77.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
56a7d507d06f3d51821e1124e642fa74ff3397af.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
3332a645bfab2f45c96ade4c05630863cbdcfbd1.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
e4c1f6f26bc4ae6ba77734b6aa93d400b87278bb.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
b2617fe77af0e357462c58cb9ab1bbc2a243ab95.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
0690201f6b392ef45758aa8180e54b80d4ff1a6a.xml |
無版本 |
17-10月-25 |
18:25 |
2,270 |
|
3cee7b10553edccb79ba709ba53630469cb48843.xml |
無版本 |
17-10月-25 |
18:25 |
1,234 |
|
23d343cca2905f5a9d8ed56e2f7308cf612ba7ec.xml |
無版本 |
17-10月-25 |
18:25 |
976 |
|
43ee7b2a373632f9a701249fd96d0edec2ff1279.xml |
無版本 |
17-10月-25 |
18:25 |
4,202 |
|
usosvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
110,592 |
|
usosvcimpl.dll |
1450.2510.14022.1 |
17-10月-25 |
18:25 |
1,422,752 |
|
MoUsoCoreWorker.exe |
1450.2510.14022.1 |
17-10月-25 |
18:25 |
5,139,896 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
641,920 |
|
Ucx01000.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
308,648 |
|
DuCsps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
139,264 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
204,800 |
|
usocoreps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
65,536 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,048 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
71,704 |
|
nsisvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
61,440 |
|
nsiproxy.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
77,824 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
489,080 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
170,888 |
|
win32k.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
808,360 |
|
win32kfull.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,268,032 |
|
win32kbase.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,334,144 |
|
win32kbase_rs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
159,744 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,319,512 |
|
winpeshl.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
98,304 |
|
wpeutil.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
200,704 |
|
wpeutil.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,768 |
|
wpeinit.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
61,440 |
|
startnet.cmd |
無版本 |
17-10月-25 |
18:25 |
9 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
CloudRecApi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,016 |
|
CloudRecSvc.exe |
1,001 |
17-10月-25 |
18:25 |
106,496 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
742,800 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
102,400 |
|
StartRep.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,277,952 |
|
RecHost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,992 |
|
SrtTel.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,754,520 |
|
RecEnv.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
484,752 |
|
BootRec.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
192,512 |
|
DUTProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
365,968 |
|
WinSetupBak.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupBak.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,688 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
36,352 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,840 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
39,936 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,648 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
29,184 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,768 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,400 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,136 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,960 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
28,160 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,432 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,328 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,112 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
37,888 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
34,816 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,088 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,872 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,896 |
|
wow64con.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
108,912 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
114,160 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
473,192 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,624 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
77,048 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
371,072 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
209,304 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
98,688 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,184 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
59,776 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
383,384 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,200 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,032 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,432 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
814,072 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
188,000 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
41,984 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
240,000 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
538,496 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
186,504 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
457,712 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,928 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
2,357,880 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
205,312 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
373,248 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
74,992 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
687,344 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,934,832 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,696 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,192 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,696 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,176 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,256 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,768 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,160 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,224 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,232 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,760 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,736 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,760 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,320 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,768 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,248 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,456 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,888 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
67,456 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,792 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,816 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,352 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,272 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,200 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,114,136 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,157,704 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,046,440 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
254,848 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,304 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
231,848 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
274,840 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
346,496 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
527,248 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,592 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
52,240 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
18:25 |
809,392 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,064 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,920 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,819,272 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
772,200 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
165,896 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
529,520 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
626,176 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,081,856 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,044,992 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
134,848 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
68,232 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
763,440 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,832 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
84,816 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
505,712 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,840 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
217,600 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,776 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,184 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
392,096 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
106,400 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,981,344 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
637,824 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
62,976 |
|
檔案名稱 |
檔案版本 |
日期 |
時間 |
檔案大小 |
|
storufs.inf |
無版本 |
17-10月-25 |
23:18 |
26,264 |
|
storufs.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
114,072 |
|
tpm.inf |
無版本 |
17-10月-25 |
23:18 |
11,618 |
|
tpm.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
352,152 |
|
USB.inf 的 |
無版本 |
17-10月-25 |
23:18 |
41,432 |
|
usbccgp.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
177,040 |
|
usbhub3.inf 的 |
無版本 |
17-10月-25 |
23:18 |
11,296 |
|
USBHUB3.SYS |
10.0.26100.7014 |
17-10月-25 |
23:18 |
694,656 |
|
usbport.inf |
無版本 |
17-10月-25 |
23:18 |
31,662 |
|
usbehci.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
112,552 |
|
usbport.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
466,816 |
|
usbhub.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
439,200 |
|
usbd.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
43,416 |
|
usbxhci.inf |
無版本 |
17-10月-25 |
23:18 |
8,452 |
|
USBXHCI.SYS |
10.0.26100.7014 |
17-10月-25 |
23:18 |
648,600 |
|
UsbXhciCompanion.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
156,600 |
|
hvloader.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
187,296 |
|
hvaa64.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,399,680 |
|
skci.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
250,744 |
|
iumbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,424 |
|
iumdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,632 |
|
tprtdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
390,048 |
|
vertdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
180,888 |
|
ucrtbase_enclave.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
450,456 |
|
veinterop.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,472 |
|
securekernel.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
971,136 |
|
VbsSiPolicy.p7b |
無版本 |
17-10月-25 |
23:18 |
68,351 |
|
SDFHost.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
44,000 |
|
IumSdk.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,720 |
|
Facilitator.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,174,912 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
139,648 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
140,176 |
|
chs_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
3,696,712 |
|
chs_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
3,696,712 |
|
msyh_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
189,924 |
|
msyh_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
189,948 |
|
cht_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
3,879,428 |
|
cht_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
3,879,424 |
|
msjh_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
201,344 |
|
msjh_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
201,320 |
|
wgl4_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
50,120 |
|
wgl4_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
50,080 |
|
segmono_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
45,872 |
|
segmono_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
45,864 |
|
segoe_slboot.ttf |
無版本 |
17-10月-25 |
23:18 |
103,008 |
|
segoe_slboot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
102,984 |
|
jpn_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
1,986,860 |
|
jpn_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
1,986,880 |
|
meiryo_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
175,972 |
|
meiryo_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
175,988 |
|
kor_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
2,374,016 |
|
kor_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
2,373,988 |
|
malgun_boot.ttf |
無版本 |
17-10月-25 |
23:18 |
201,968 |
|
malgun_boot_EX.ttf |
無版本 |
17-10月-25 |
23:18 |
201,972 |
|
efisys.bin |
無版本 |
17-10月-25 |
23:18 |
1,720,320 |
|
efisys_EX.bin |
無版本 |
17-10月-25 |
23:18 |
1,720,320 |
|
efisys_noprompt.bin |
無版本 |
17-10月-25 |
23:18 |
1,720,320 |
|
efisys_noprompt_EX.bin |
無版本 |
17-10月-25 |
23:18 |
1,720,320 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,664 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,616 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,616 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
97,224 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
97,224 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
97,736 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
97,736 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
90,056 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,640 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
91,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
91,056 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
96,688 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
96,688 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,640 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
96,712 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
96,712 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,152 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,152 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
81,328 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
81,328 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
80,840 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
80,840 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,592 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,592 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
92,104 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
95,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
95,664 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
94,128 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
93,128 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
76,208 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
76,208 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
76,744 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
23:18 |
76,744 |
|
tcblaunch.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
887,424 |
|
tcbloader.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
280,488 |
|
DrtmAuthArm.wim |
無版本 |
17-10月-25 |
23:18 |
7,412 |
|
bootmgfw.efi |
10.0.26100.30227 |
17-10月-25 |
23:18 |
2,698,184 |
|
bootmgfw_EX.efi |
10.0.26100.30227 |
17-10月-25 |
23:18 |
2,698,040 |
|
安全啟動恢復.efi |
無版本 |
17-10月-25 |
23:18 |
172,968 |
|
bootmgr.efi |
10.0.26100.30227 |
17-10月-25 |
23:18 |
2,680,744 |
|
bootmgr_EX.efi |
10.0.26100.30227 |
17-10月-25 |
23:18 |
2,680,744 |
|
boot.stl |
無版本 |
17-10月-25 |
23:18 |
10,853 |
|
boot.pnd.stl |
無版本 |
17-10月-25 |
23:18 |
11,556 |
|
winsipolicy.p7b |
無版本 |
17-10月-25 |
23:18 |
10,341 |
|
bootux.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,940,800 |
|
winload.efi |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,083,080 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
294,600 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
981,016 |
|
BootMenuUX.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
220,160 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
53,248 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
51,712 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,840 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,624 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
24,064 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
45,056 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
49,152 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,456 |
|
bootim.exe |
10.0.26100.7014 |
17-10月-25 |
18:23 |
34,816 |
|
driversipolicy.p7b |
無版本 |
17-10月-25 |
23:18 |
229,162 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,419,480 |
|
cng.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
780,512 |
|
ci.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
980,016 |
|
驅動程式.stl |
無版本 |
17-10月-25 |
23:18 |
15,113 |
|
上一頁.driver.stl |
無版本 |
17-10月-25 |
23:18 |
15,113 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
76,120 |
|
symcryptk.dll |
103.9.1.0 |
17-10月-25 |
23:18 |
36,776 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
180,952 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
784,792 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
526,232 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
404,904 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
200,088 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
162,712 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
796,544 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
261,024 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
544,168 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
173,968 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,968 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,504 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,992 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
24,576 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,600 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,192 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,192 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,480 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,016 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,456 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,680 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
18,432 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,144 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,144 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,040 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,312 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,120 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,120 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,800 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,552 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,728 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,608 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,608 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
10,240 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,312 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,728 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,192 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
10,752 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,964,280 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
516,112 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
18:23 |
52,736 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
284,032 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,099,136 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
214,440 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
929,272 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
34,688 |
|
fbwf.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
134,432 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
216,448 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
739,200 |
|
diagER.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
77,728 |
|
hwcompat.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
234,880 |
|
hwcompat.txt |
無版本 |
17-10月-25 |
23:18 |
218,945 |
|
hwexclude.txt |
無版本 |
17-10月-25 |
23:18 |
51 |
|
icbexclusion.inf |
無版本 |
17-10月-25 |
23:18 |
7,222 |
|
migapp.xml |
無版本 |
17-10月-25 |
23:18 |
654,548 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,909,192 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
271,232 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
17,320 |
|
migisol.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
124,800 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,407,896 |
|
migsys.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
483,216 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
395,648 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
499,624 |
|
offline.xml |
無版本 |
17-10月-25 |
23:18 |
44,831 |
|
oscomps.xml |
無版本 |
17-10月-25 |
23:18 |
449,323 |
|
osfilter.inf 的 |
無版本 |
17-10月-25 |
23:18 |
21,299 |
|
pnppropmig.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
93,592 |
|
ReserveManager.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
340,864 |
|
setupplatform.cfg |
無版本 |
17-10月-25 |
23:18 |
15,971 |
|
setupplatform.dll |
1.97.26100.7014 |
17-10月-25 |
23:18 |
10,305,464 |
|
setupplatform.exe |
1.97.26100.7014 |
17-10月-25 |
23:18 |
238,992 |
|
SFCN.dat |
無版本 |
17-10月-25 |
23:18 |
18:24 |
|
SFLCID.dat |
無版本 |
17-10月-25 |
23:18 |
1,644 |
|
SFLISTW7.dat |
無版本 |
17-10月-25 |
23:18 |
1,703,368 |
|
SFLISTW8.dat |
無版本 |
17-10月-25 |
23:18 |
2,608,858 |
|
SFLISTWB.dat |
無版本 |
17-10月-25 |
23:18 |
3,172,904 |
|
SFLISTWT.dat |
無版本 |
17-10月-25 |
23:18 |
4,935,402 |
|
SFLISTRS1.dat |
無版本 |
17-10月-25 |
23:18 |
5,593,182 |
|
SFPAT.inf |
無版本 |
17-10月-25 |
23:18 |
11,602 |
|
SFPATW7.inf |
無版本 |
17-10月-25 |
23:18 |
17,396 |
|
SFPATW8.inf |
無版本 |
17-10月-25 |
23:18 |
79,818 |
|
SFPATWB.inf 網站 |
無版本 |
17-10月-25 |
23:18 |
91,635 |
|
SFPATWT.inf 網站 |
無版本 |
17-10月-25 |
23:18 |
165,729 |
|
SFPATRS1.inf |
無版本 |
17-10月-25 |
23:18 |
169,730 |
|
unbcl.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,112,976 |
|
upgradeagent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,451,304 |
|
upgradeagent.xml |
無版本 |
17-10月-25 |
23:18 |
70,907 |
|
upgrade_comp.xml |
無版本 |
17-10月-25 |
23:18 |
6,054 |
|
upgrade_bulk.xml |
無版本 |
17-10月-25 |
23:18 |
211,949 |
|
upgrade_data.xml |
無版本 |
17-10月-25 |
23:18 |
41,750 |
|
upgrade_frmwrk.xml |
無版本 |
17-10月-25 |
23:18 |
19,157 |
|
upgWow_bulk.xml |
無版本 |
17-10月-25 |
23:18 |
114,707 |
|
upgWowA32_bulk.xml |
無版本 |
17-10月-25 |
23:18 |
114,697 |
|
uninstall.xml |
無版本 |
17-10月-25 |
23:18 |
4,639 |
|
uninstall_data.xml |
無版本 |
17-10月-25 |
23:18 |
11,122 |
|
wdsutil.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
352,664 |
|
WinSetupMon.hiv |
無版本 |
17-10月-25 |
23:18 |
8,192 |
|
WinSetupMon.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
145,816 |
|
actionqueue.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
431,520 |
|
appcompat_detailed.xsl |
無版本 |
17-10月-25 |
23:18 |
13,608 |
|
appcompat_detailed_bidi.xsl |
無版本 |
17-10月-25 |
23:18 |
13,732 |
|
cdplib.mof |
無版本 |
17-10月-25 |
23:18 |
1,976 |
|
cdplibuninstall.mof |
無版本 |
17-10月-25 |
23:18 |
571 |
|
dpx.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,938,816 |
|
UpdateCompression.dll |
5.0.1.1 |
17-10月-25 |
23:18 |
1,075,104 |
|
itgtupg.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
100,736 |
|
migtestplugin.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
56,704 |
|
msdelta.dll |
5.0.1.1 |
17-10月-25 |
23:18 |
947,584 |
|
mspatcha.dll |
5.0.1.1 |
17-10月-25 |
23:18 |
116,120 |
|
smiengine.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,696,672 |
|
wcmtypes.xsd |
無版本 |
17-10月-25 |
23:18 |
1,047 |
|
wdsupgcompl.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,992 |
|
auditetw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,216 |
|
cmisetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,744 |
|
etwproviderinstall.vbs |
無版本 |
17-10月-25 |
23:18 |
6,868 |
|
setupcletw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,824 |
|
winsetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
68,968 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,208 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,240 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,744 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,248 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,720 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
13,696 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
14,224 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,656 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
13,200 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,632 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
23:18 |
13,224 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
3,478,712 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
529,920 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
827,904 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
187,144 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,459,816 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,075,184 |
|
dxgkrnl.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,921,768 |
|
cdd.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
260,096 |
|
dxgmms1.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
462,720 |
|
dxgmms2.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,076,096 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,432 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,416 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,904 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,400 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,888 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,392 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,880 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,864 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
29,592 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,392 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,416 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,392 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,912 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,904 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,424 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,392 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,536 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,864 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,400 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,440 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,416 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,888 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,456 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,400 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,496 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,936 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,920 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,880 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,496 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,424 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,888 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,880 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,488 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,912 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,424 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,888 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,400 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,984 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,912 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,912 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
33,704 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,416 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,888 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,960 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,904 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,184 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,904 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,376 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,928 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,440 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,936 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
30,632 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,400 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,536 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,440 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,944 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
41,856 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
39,296 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
135,568 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,968 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
31,640 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,200 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,728 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,024 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,944 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,262,376 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,909,176 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,407,872 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
271,264 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
17,280 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
334,208 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
395,664 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
499,608 |
|
SFLISTXP.dat |
無版本 |
17-10月-25 |
23:18 |
1,459,226 |
|
SFLISTLH.dat |
無版本 |
17-10月-25 |
23:18 |
3,347,940 |
|
SFPATXP.inf 網站 |
無版本 |
17-10月-25 |
23:18 |
4,355 |
|
SFPATLH.inf 網站 |
無版本 |
17-10月-25 |
23:18 |
8,678 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
140,632 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
23:18 |
1,324,392 |
|
netio.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
674,728 |
|
ncsi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,243,648 |
|
netprofmsvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,163,200 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
75,264 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
77,312 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
57,344 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,340,456 |
|
ntoskrnl.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,450,296 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,102,832 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
10,752 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,144 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,288 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
20:35 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,264 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,016 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,263 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,800 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
3,659 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,312 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,091 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,166 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,776 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,272 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,728 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,348 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,088 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,399 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,192 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,608 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
1,908 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,680 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,089 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,099 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,093 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,106 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
3,348 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,117 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
10,240 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
2,133 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,632 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
1,718 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
6,144 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
4,096 |
|
試劑.adml |
無版本 |
17-10月-25 |
23:18 |
06:17 |
|
試劑.admx |
無版本 |
17-10月-25 |
23:18 |
1,240 |
|
reagent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,207,696 |
|
reagent.xml |
無版本 |
17-10月-25 |
23:18 |
837 |
|
設定平台.cfg |
無版本 |
17-10月-25 |
23:18 |
22,945 |
|
wdscore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
259,968 |
|
WinSetupBoot.hiv |
無版本 |
17-10月-25 |
23:18 |
8,192 |
|
WinSetupBoot.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
91,008 |
|
wdsclientapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
252,248 |
|
wdscsl.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
94,608 |
|
wdsimage.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
111,488 |
|
wdstptc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
199,016 |
|
fvevol.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
890,264 |
|
dumpfve.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
108,656 |
|
bcd.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
145,176 |
|
bootsvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
282,568 |
|
hwreqchk.dll |
無版本 |
17-10月-25 |
23:18 |
797,568 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,771,232 |
|
utcapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
46,464 |
|
wimgapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,547,160 |
|
wdscommonlib.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
322,432 |
|
dismapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,149,784 |
|
dismcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
784,800 |
|
dismcoreps.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
219,536 |
|
dismprov.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
298,368 |
|
imagingprovider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
470,400 |
|
logprovider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
180,096 |
|
vhdprovider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,090,456 |
|
wimprovider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,283,480 |
|
unattend.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
353,664 |
|
wpx.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,553,832 |
|
locale.nls |
無版本 |
17-10月-25 |
23:18 |
862,800 |
|
nlsbres.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
94,592 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
375,208 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,164,840 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,297,408 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,201,600 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,355,712 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
305,376 |
|
localkdcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
871,936 |
|
LsaIso.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
378,200 |
|
iumcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
141,136 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
177,304 |
|
ResetEngine.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,419,024 |
|
ResetTelemetry.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
583,040 |
|
ResetEngine.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,528 |
|
ResetPluginHost.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
41,472 |
|
srms.dat |
無版本 |
17-10月-25 |
23:18 |
60,961 |
|
sysreset.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
480,256 |
|
ResetEngOnline.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
228,352 |
|
SysResetErr.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
62,872 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,608 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,584 |
|
tcpip.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,303,320 |
|
FWPKCLNT.SYS |
10.0.26100.7014 |
17-10月-25 |
23:18 |
541,568 |
|
tcpipreg.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
62,464 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
262,144 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
269,824 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
265,216 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
269,312 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
261,632 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
264,192 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
259,072 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
252,928 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
252,416 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
264,704 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
263,168 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
267,264 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
266,752 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
262,656 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
263,680 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
249,344 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
249,856 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
94,176 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
181,512 |
|
tbs.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
46,504 |
|
usodocked.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,448,960 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
3,072 |
|
8acdd7e8a35f165b675b664e7ef8753ef4782f32.xml |
無版本 |
17-10月-25 |
23:18 |
3,314 |
|
72aceda3d9ebaa195b776ea9042fdf4dc3d29834.xml |
無版本 |
17-10月-25 |
23:18 |
2,496 |
|
7bc20c224f17145165aedb3fce9bda4f3c563cd7.xml |
無版本 |
17-10月-25 |
23:18 |
2,344 |
|
465bb23da8d1bea1a024758ba463bc1a7c487362.xml |
無版本 |
17-10月-25 |
23:18 |
2,458 |
|
7106fe8ce0b33cfdfee8b58e7e1b0a812935905e.xml |
無版本 |
17-10月-25 |
23:18 |
2,344 |
|
518f3ea9dc67aa5af7eb2840a6f77c874c2b2a17.xml |
無版本 |
17-10月-25 |
23:18 |
2,476 |
|
99c5248bd8c3356e9a42f332cab9b22eae3856df.xml |
無版本 |
17-10月-25 |
23:18 |
2,488 |
|
ef338bad6c4b025dc9c8f4f87a98276b2139d403.xml |
無版本 |
17-10月-25 |
23:18 |
2,482 |
|
0e0337eedd34f1bed8e9bc3202a2754e48b705af.xml |
無版本 |
17-10月-25 |
23:18 |
2,500 |
|
4ba05104f3d293466a50d8de04318624ab592070.xml |
無版本 |
17-10月-25 |
23:18 |
2,476 |
|
81d5c60cdaa2f6bac600452c12eac91e3823d9ef.xml |
無版本 |
17-10月-25 |
23:18 |
3,876 |
|
90eaab3b92938b566b871d11d7a2c86b081b26d4.xml |
無版本 |
17-10月-25 |
23:18 |
2,460 |
|
c20df1ed8df28c31d513bd896b58980c00c8b298.xml |
無版本 |
17-10月-25 |
23:18 |
878 |
|
5c7e9e098d198f0114f76066999378607084a638.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
68feea34ca8e40dee5faab63604db4cd1d7a3e77.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
56a7d507d06f3d51821e1124e642fa74ff3397af.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
3332a645bfab2f45c96ade4c05630863cbdcfbd1.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
e4c1f6f26bc4ae6ba77734b6aa93d400b87278bb.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
b2617fe77af0e357462c58cb9ab1bbc2a243ab95.xml |
無版本 |
17-10月-25 |
23:18 |
1,034 |
|
0690201f6b392ef45758aa8180e54b80d4ff1a6a.xml |
無版本 |
17-10月-25 |
23:18 |
2,270 |
|
3cee7b10553edccb79ba709ba53630469cb48843.xml |
無版本 |
17-10月-25 |
23:18 |
1,234 |
|
23d343cca2905f5a9d8ed56e2f7308cf612ba7ec.xml |
無版本 |
17-10月-25 |
23:18 |
976 |
|
43ee7b2a373632f9a701249fd96d0edec2ff1279.xml |
無版本 |
17-10月-25 |
23:18 |
4,202 |
|
usosvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
97,792 |
|
usosvcimpl.dll |
1450.2510.14022.1 |
17-10月-25 |
23:18 |
1,626,536 |
|
MoUsoCoreWorker.exe |
1450.2510.14022.1 |
17-10月-25 |
23:18 |
5,994,936 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,331,672 |
|
Ucx01000.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
274,344 |
|
DuCsps.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
128,000 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
389,632 |
|
usocoreps.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
101,888 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
293,376 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
53,400 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
98,312 |
|
nsisvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
78,848 |
|
nsiproxy.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
50,176 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
782,664 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
381,296 |
|
win32k.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
684,416 |
|
win32kfull.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,931,648 |
|
win32kbase.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,065,344 |
|
win32kbase_rs.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
120,320 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,935,864 |
|
winpeshl.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
72,704 |
|
wpeutil.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
182,784 |
|
wpeutil.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,872 |
|
wpeinit.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
39,424 |
|
startnet.cmd |
無版本 |
17-10月-25 |
23:18 |
9 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,264 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
11,776 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
8,704 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,680 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,168 |
|
CloudRecApi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
72,192 |
|
CloudRecSvc.exe |
1,001 |
17-10月-25 |
23:18 |
97,280 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,207,680 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
176,640 |
|
StartRep.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,309,696 |
|
RecHost.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
139,664 |
|
SrtTel.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,904,552 |
|
RecEnv.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
462,736 |
|
BootRec.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
171,520 |
|
DUTProvider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
361,376 |
|
WinSetupBak.hiv |
無版本 |
17-10月-25 |
23:18 |
8,192 |
|
WinSetupBak.sys |
10.0.26100.7014 |
17-10月-25 |
23:18 |
196,992 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
36,352 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,600 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,840 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
39,936 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,648 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
43,520 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
29,184 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
32,768 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
24,576 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
38,400 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,136 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
40,960 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
28,160 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,624 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
22,528 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,456 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
4,096 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
4,096 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,992 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
18,432 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,584 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,328 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
26,112 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
37,888 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
40,448 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:23 |
34,816 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
25,088 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,872 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,896 |
|
wow64con.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
18,696 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
114,160 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
473,192 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
23:18 |
1,156,680 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,574,560 |
|
d2d1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,036,528 |
|
d3d9on12.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
981,504 |
|
d3d10warp.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
9,689,960 |
|
d3d11.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,431,832 |
|
d3d11on12.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
826,680 |
|
d3d12.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
188,328 |
|
DWrite.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,943,488 |
|
gdi32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
280,840 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
2,749,152 |
|
jscript9.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
6,512,640 |
|
msftedit.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
4,263,424 |
|
mshtml.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
28,168,192 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
381,440 |
|
opengl32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,281,536 |
|
urlmon.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
2,325,504 |
|
windows.storage.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,470,808 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,807,064 |
|
wininet.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
3,079,144 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
3,952,008 |
|
oleaut32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,032,736 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,249,664 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
32,624 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
77,048 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
371,072 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
209,304 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
98,688 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
76,184 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
59,776 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
383,384 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
99,200 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
261,032 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
86,432 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
814,072 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
188,000 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
41,984 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
240,000 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
538,496 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
186,504 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
457,712 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
27,928 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
2,357,880 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
205,312 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
23:18 |
373,248 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
74,992 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
687,344 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
2,934,832 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,216 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,208 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,696 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,192 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,704 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,696 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,176 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,256 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,216 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,720 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,768 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,160 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,720 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,224 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,720 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,232 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,208 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,704 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
14,760 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,704 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
14,744 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,208 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,736 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,704 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
14,760 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,704 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
18,320 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,672 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,720 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,216 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,688 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
12,712 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,696 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,696 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,696 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
16,768 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,248 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,720 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,184 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
23,456 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
20,888 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
67,456 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,696 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
17,792 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
18,816 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,352 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
15,272 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
13,200 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,114,136 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
7,157,704 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,046,440 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
23:18 |
254,848 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
17,304 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
231,848 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
274,840 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
346,496 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
527,248 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
158,592 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
52,240 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
23:18 |
809,392 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
24,064 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
19,456 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
17,920 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,819,272 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
772,200 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
165,896 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
529,520 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
626,176 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,081,856 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,044,992 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
134,848 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
68,232 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
763,440 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
38,832 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
84,816 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
505,712 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
99,840 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
217,600 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
21,776 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
35,184 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
392,096 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
106,400 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
1,981,344 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
637,824 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
23:18 |
62,976 |
|
檔案名稱 |
檔案版本 |
日期 |
時間 |
檔案大小 |
|
storufs.inf |
無版本 |
17-10月-25 |
18:25 |
26,264 |
|
storufs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
148,896 |
|
tpm.inf |
無版本 |
17-10月-25 |
18:25 |
11,804 |
|
tpm.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
374,168 |
|
USB.inf 的 |
無版本 |
17-10月-25 |
18:25 |
41,432 |
|
usbccgp.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
222,616 |
|
usbhub3.inf 的 |
無版本 |
17-10月-25 |
18:25 |
11,296 |
|
USBHUB3.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
746,880 |
|
usbport.inf |
無版本 |
17-10月-25 |
18:25 |
77,436 |
|
usbohci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
69,632 |
|
usbport.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
509,352 |
|
usbhub.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
570,792 |
|
usbehci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
128,424 |
|
usbuhci.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
73,728 |
|
usbd.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,160 |
|
usbxhci.inf |
無版本 |
17-10月-25 |
18:25 |
8,444 |
|
USBXHCI.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
730,512 |
|
UsbXhciCompanion.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
187,400 |
|
hvloader.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,808 |
|
hvax64.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,971,600 |
|
hvix64.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,053,504 |
|
skci.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
340,288 |
|
iumbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,064 |
|
iumdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,672 |
|
tprtdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
456,008 |
|
vertdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
216,352 |
|
ucrtbase_enclave.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
646,048 |
|
veinterop.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,912 |
|
securekernel.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,320,320 |
|
VbsSiPolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
68,351 |
|
SDFHost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
63,480 |
|
IumSdk.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,408 |
|
Facilitator.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,123,744 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,984 |
|
apisetschema.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,960 |
|
chs_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
3,696,736 |
|
chs_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
3,696,752 |
|
msyh_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
189,936 |
|
msyh_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
189,948 |
|
msyhn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
187,932 |
|
msyhn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
187,924 |
|
cht_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
3,879,440 |
|
cht_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
3,879,404 |
|
msjh_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
201,324 |
|
msjh_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
201,348 |
|
msjhn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
199,200 |
|
msjhn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
199,160 |
|
wgl4_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
50,080 |
|
wgl4_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
50,096 |
|
segmono_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
45,852 |
|
segmono_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
45,848 |
|
segoe_slboot.ttf |
無版本 |
17-10月-25 |
18:25 |
103,020 |
|
segoe_slboot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
103,004 |
|
segoen_slboot.ttf |
無版本 |
17-10月-25 |
18:25 |
102,708 |
|
segoen_slboot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
102,708 |
|
jpn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
1,986,880 |
|
jpn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
1,986,884 |
|
meiryo_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
175,988 |
|
meiryo_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
175,988 |
|
meiryon_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
174,168 |
|
meiryon_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
174,148 |
|
kor_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
2,374,016 |
|
kor_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
2,374,012 |
|
malgun_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
201,972 |
|
malgun_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
201,972 |
|
malgunn_boot.ttf |
無版本 |
17-10月-25 |
18:25 |
199,428 |
|
malgunn_boot_EX.ttf |
無版本 |
17-10月-25 |
18:25 |
199,428 |
|
efisys.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_EX.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_noprompt.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
efisys_noprompt_EX.bin |
無版本 |
17-10月-25 |
18:25 |
1,474,560 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,712 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,712 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,032 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,032 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,056 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,640 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
91,056 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
91,056 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
97,200 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,712 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,712 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,640 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,640 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,688 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
96,688 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
81,328 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
81,328 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
80,816 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
80,816 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,104 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,080 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,080 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,664 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
95,664 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
95,664 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,152 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,104 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
94,128 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,128 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,128 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
92,592 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
93,616 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,000 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,208 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,208 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgfw.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,720 |
|
bootmgfw_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
76,720 |
|
bootmgr.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
bootmgr_EX.efi.mui |
10.0.26100.30227 |
17-10月-25 |
18:25 |
90,024 |
|
tcblaunch.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
975,696 |
|
tcbloader.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
316,816 |
|
DrtmAuthTxt.wim |
無版本 |
17-10月-25 |
18:25 |
23,167 |
|
bootmgfw.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,855,368 |
|
bootmgfw_EX.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,855,192 |
|
安全啟動恢復.efi |
無版本 |
17-10月-25 |
18:25 |
164,752 |
|
bootmgr.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,837,416 |
|
bootmgr_EX.efi |
10.0.26100.30227 |
17-10月-25 |
18:25 |
2,837,416 |
|
boot.stl |
無版本 |
17-10月-25 |
18:25 |
11,030 |
|
boot.pnd.stl |
無版本 |
17-10月-25 |
18:25 |
11,733 |
|
winsipolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
10,341 |
|
winload.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,228,680 |
|
bootux.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,964,352 |
|
winload.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,866,176 |
|
winload.efi |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,268,440 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
183,312 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
691,520 |
|
BootMenuUX.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
241,664 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,712 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,840 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,064 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,056 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
49,152 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
bootim.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
bootux.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,964,352 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,712 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,200 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,840 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,104 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,064 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,056 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,032 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,640 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
49,152 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,080 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
46,592 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
48,128 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
44,544 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
45,568 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
bootux.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
driversipolicy.p7b |
無版本 |
17-10月-25 |
18:25 |
229,162 |
|
cng.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
927,000 |
|
ci.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,108,832 |
|
驅動程式.stl |
無版本 |
17-10月-25 |
18:25 |
33,360 |
|
上一頁.driver.stl |
無版本 |
17-10月-25 |
18:25 |
33,360 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
59,304 |
|
symcryptk.dll |
103.9.1.0 |
17-10月-25 |
18:25 |
58,776 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
121,288 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
480,680 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
300,456 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,808 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
120,192 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
95,656 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
472,472 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,976 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
337,320 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
132,496 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,968 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,504 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,016 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,432 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,504 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,504 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,552 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,016 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,040 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,504 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,480 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
WerFault.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,240 |
|
WerFaultSecure.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
faultrep.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
wer.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
989,024 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
253,528 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
73,728 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
296,352 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
648,576 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
232,864 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
559,280 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
55,152 |
|
fbwf.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,464 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,720 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
718,208 |
|
diagER.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,752 |
|
hwcompat.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
243,088 |
|
hwcompat.txt |
無版本 |
17-10月-25 |
18:25 |
957,123 |
|
hwexclude.txt |
無版本 |
17-10月-25 |
18:25 |
51 |
|
icbexclusion.inf |
無版本 |
17-10月-25 |
18:25 |
7,222 |
|
migapp.xml |
無版本 |
17-10月-25 |
18:25 |
654,548 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,311,672 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
288,160 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
migisol.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
148,888 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,369,472 |
|
migsys.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
464,272 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
386,456 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
488,872 |
|
offline.xml |
無版本 |
17-10月-25 |
18:25 |
44,831 |
|
oscomps.xml |
無版本 |
17-10月-25 |
18:25 |
449,323 |
|
osfilter.inf 的 |
無版本 |
17-10月-25 |
18:25 |
21,299 |
|
pnppropmig.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
107,904 |
|
ReserveManager.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
345,504 |
|
setupplatform.cfg |
無版本 |
17-10月-25 |
18:25 |
15,971 |
|
setupplatform.dll |
1.97.26100.7014 |
17-10月-25 |
18:25 |
9,827,744 |
|
setupplatform.exe |
1.97.26100.7014 |
17-10月-25 |
18:25 |
255,360 |
|
SFCN.dat |
無版本 |
17-10月-25 |
18:25 |
18:24 |
|
SFLCID.dat |
無版本 |
17-10月-25 |
18:25 |
1,644 |
|
SFLISTW7.dat |
無版本 |
17-10月-25 |
18:25 |
1,703,368 |
|
SFLISTW8.dat |
無版本 |
17-10月-25 |
18:25 |
2,608,858 |
|
SFLISTWB.dat |
無版本 |
17-10月-25 |
18:25 |
3,172,904 |
|
SFLISTWT.dat |
無版本 |
17-10月-25 |
18:25 |
4,935,402 |
|
SFLISTRS1.dat |
無版本 |
17-10月-25 |
18:25 |
5,593,182 |
|
SFPAT.inf |
無版本 |
17-10月-25 |
18:25 |
11,602 |
|
SFPATW7.inf |
無版本 |
17-10月-25 |
18:25 |
17,396 |
|
SFPATW8.inf |
無版本 |
17-10月-25 |
18:25 |
79,818 |
|
SFPATWB.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
91,635 |
|
SFPATWT.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
165,729 |
|
SFPATRS1.inf |
無版本 |
17-10月-25 |
18:25 |
169,730 |
|
unbcl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,090,984 |
|
upgradeagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,306,880 |
|
upgradeagent.xml |
無版本 |
17-10月-25 |
18:25 |
70,907 |
|
upgrade_comp.xml |
無版本 |
17-10月-25 |
18:25 |
6,054 |
|
upgrade_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
211,949 |
|
upgrade_data.xml |
無版本 |
17-10月-25 |
18:25 |
41,750 |
|
upgrade_frmwrk.xml |
無版本 |
17-10月-25 |
18:25 |
19,157 |
|
upgWow_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
114,707 |
|
uninstall.xml |
無版本 |
17-10月-25 |
18:25 |
4,639 |
|
uninstall_data.xml |
無版本 |
17-10月-25 |
18:25 |
11,122 |
|
wdsutil.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
353,688 |
|
WinSetupMon.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupMon.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
169,376 |
|
actionqueue.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,672 |
|
appcompat_detailed.xsl |
無版本 |
17-10月-25 |
18:25 |
13,608 |
|
appcompat_detailed_bidi.xsl |
無版本 |
17-10月-25 |
18:25 |
13,732 |
|
cdplib.mof |
無版本 |
17-10月-25 |
18:25 |
1,976 |
|
cdplibuninstall.mof |
無版本 |
17-10月-25 |
18:25 |
571 |
|
dpx.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,103,264 |
|
UpdateCompression.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
619,936 |
|
hwcompat.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
243,088 |
|
itgtupg.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
117,096 |
|
migisol.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
148,888 |
|
migtestplugin.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,144 |
|
msdelta.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
595,368 |
|
mspatcha.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
83,328 |
|
oscomps.xml |
無版本 |
17-10月-25 |
18:25 |
449,323 |
|
osfilter.inf 的 |
無版本 |
17-10月-25 |
18:25 |
21,299 |
|
sflistw7.dat |
無版本 |
17-10月-25 |
18:25 |
1,703,368 |
|
sflistw8.dat |
無版本 |
17-10月-25 |
18:25 |
2,608,858 |
|
sflistwb.dat |
無版本 |
17-10月-25 |
18:25 |
3,172,904 |
|
sflistwt.dat |
無版本 |
17-10月-25 |
18:25 |
4,935,402 |
|
sflistrs1.dat |
無版本 |
17-10月-25 |
18:25 |
5,593,182 |
|
sfpat.inf 的 |
無版本 |
17-10月-25 |
18:25 |
11,602 |
|
sfpatw7.inf |
無版本 |
17-10月-25 |
18:25 |
17,396 |
|
sfpatw8.inf |
無版本 |
17-10月-25 |
18:25 |
79,818 |
|
sfpatwb.inf |
無版本 |
17-10月-25 |
18:25 |
91,635 |
|
sfpatwt.inf |
無版本 |
17-10月-25 |
18:25 |
165,729 |
|
sfpatrs1.inf |
無版本 |
17-10月-25 |
18:25 |
169,730 |
|
smiengine.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
927,104 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,720 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,311,672 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,369,472 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
718,208 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
288,160 |
|
mxeagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
386,456 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
488,872 |
|
upgradeagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,306,880 |
|
upgradeagent.xml |
無版本 |
17-10月-25 |
18:25 |
70,907 |
|
upgrade_comp.xml |
無版本 |
17-10月-25 |
18:25 |
6,054 |
|
upgrade_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
211,949 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
upgwow_bulk.xml |
無版本 |
17-10月-25 |
18:25 |
114,707 |
|
uninstall.xml |
無版本 |
17-10月-25 |
18:25 |
4,639 |
|
uninstall_data.xml |
無版本 |
17-10月-25 |
18:25 |
11,122 |
|
wcmtypes.xsd |
無版本 |
17-10月-25 |
18:25 |
1,047 |
|
wdsupgcompl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
47,472 |
|
auditetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,968 |
|
cmisetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,968 |
|
etwproviderinstall.vbs |
無版本 |
17-10月-25 |
18:25 |
6,868 |
|
setupcletw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
31,088 |
|
winsetupetw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,160 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,224 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,736 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,736 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,224 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,752 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
migres.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,224 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
2,922,776 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
286,720 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
438,272 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
121,264 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
836,152 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,170,664 |
|
dxgkrnl.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,182,904 |
|
cdd.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
335,872 |
|
dxgmms1.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
546,216 |
|
dxgmms2.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,201,536 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,016 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,008 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,920 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,928 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,912 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,096 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
30,104 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,136 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,008 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,024 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,904 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,888 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,373,304 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,311,648 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,369,512 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
288,152 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,984 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
329,104 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
386,448 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
488,864 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
718,208 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,712 |
|
SFCN.dat |
無版本 |
17-10月-25 |
18:25 |
18:24 |
|
SFLCID.dat |
無版本 |
17-10月-25 |
18:25 |
1,644 |
|
SFLISTXP.dat |
無版本 |
17-10月-25 |
18:25 |
1,459,226 |
|
SFLISTLH.dat |
無版本 |
17-10月-25 |
18:25 |
3,347,940 |
|
SFLISTW7.dat |
無版本 |
17-10月-25 |
18:25 |
1,703,368 |
|
SFLISTW8.dat |
無版本 |
17-10月-25 |
18:25 |
2,608,858 |
|
SFLISTWB.dat |
無版本 |
17-10月-25 |
18:25 |
3,172,904 |
|
SFLISTWT.dat |
無版本 |
17-10月-25 |
18:25 |
4,935,402 |
|
SFLISTRS1.dat |
無版本 |
17-10月-25 |
18:25 |
5,593,182 |
|
SFPAT.inf |
無版本 |
17-10月-25 |
18:25 |
11,602 |
|
SFPATXP.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
4,355 |
|
SFPATLH.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
8,678 |
|
SFPATW7.inf |
無版本 |
17-10月-25 |
18:25 |
17,396 |
|
SFPATW8.inf |
無版本 |
17-10月-25 |
18:25 |
79,818 |
|
SFPATWB.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
91,635 |
|
SFPATWT.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
165,729 |
|
SFPATRS1.inf |
無版本 |
17-10月-25 |
18:25 |
169,730 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
88,232 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
18:25 |
699,808 |
|
netio.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
755,096 |
|
ncsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
708,608 |
|
netprofmsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,105,344 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
53,248 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
49,152 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,522,008 |
|
ntoskrnl.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,973,496 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,162,576 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,224 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
20:35 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,016 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,263 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
3,659 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,312 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,091 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,166 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,736 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,272 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
9,728 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,736 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,224 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,348 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,752 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,088 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,399 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,192 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,908 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,089 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,091 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,099 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,288 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,093 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,106 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,656 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
3,348 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,800 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,117 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,240 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
2,133 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,248 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,817 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
14,232 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
1,718 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
試劑.adml |
無版本 |
17-10月-25 |
18:25 |
06:17 |
|
reagent.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
6,144 |
|
setupplatform.exe.mui |
1.97.26100.7014 |
17-10月-25 |
18:25 |
13,224 |
|
wdsimage.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
diager.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,752 |
|
試劑.admx |
無版本 |
17-10月-25 |
18:25 |
1,240 |
|
reagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
742,784 |
|
reagent.xml |
無版本 |
17-10月-25 |
18:25 |
837 |
|
設定平台.cfg |
無版本 |
17-10月-25 |
18:25 |
22,945 |
|
SetupPlatform.dll |
1.97.26100.7014 |
17-10月-25 |
18:25 |
9,827,744 |
|
SetupPlatform.exe |
1.97.26100.7014 |
17-10月-25 |
18:25 |
255,360 |
|
unbcl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,090,984 |
|
wdscore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
279,952 |
|
wdsutil.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
353,688 |
|
WinSetupBoot.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupBoot.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
112,016 |
|
WinSetupMon.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupMon.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
169,376 |
|
wdsclientapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
268,632 |
|
wdscsl.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
112,040 |
|
wdsimage.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
129,368 |
|
wdstptc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
219,504 |
|
pnppropmig.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
107,904 |
|
hwcompat.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
243,088 |
|
offline.xml |
無版本 |
17-10月-25 |
18:25 |
44,831 |
|
upgrade_frmwrk.xml |
無版本 |
17-10月-25 |
18:25 |
19,157 |
|
fvevol.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
972,184 |
|
dumpfve.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,488 |
|
bcd.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
162,584 |
|
bootsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
303,096 |
|
hwreqchk.dll |
無版本 |
17-10月-25 |
18:25 |
439,704 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
955,928 |
|
utcapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
66,960 |
|
wimgapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
910,760 |
|
wdscommonlib.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
341,408 |
|
dismapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,250,704 |
|
dismcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
480,640 |
|
dismcoreps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
230,784 |
|
dismprov.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
300,440 |
|
folderprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
95,632 |
|
imagingprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
247,200 |
|
logprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
189,824 |
|
UpdateCompression.dll |
5.0.1.1 |
17-10月-25 |
18:25 |
619,936 |
|
vhdprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
599,424 |
|
wimprovider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
697,744 |
|
unattend.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
374,184 |
|
wpx.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,422,720 |
|
locale.nls |
無版本 |
17-10月-25 |
18:25 |
862,800 |
|
nlsbres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
103,808 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,800 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
691,520 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
749,568 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,323,008 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,400,832 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
183,272 |
|
localkdcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
884,736 |
|
LsaIso.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
398,176 |
|
iumcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
100,632 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
113,024 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
955,928 |
|
ResetEngine.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,921,856 |
|
ResetTelemetry.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
570,752 |
|
ResetEngine.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
42,384 |
|
ResetPluginHost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
57,344 |
|
srms.dat |
無版本 |
17-10月-25 |
18:25 |
60,961 |
|
sysreset.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
487,424 |
|
ResetEngOnline.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
229,376 |
|
ResetEngine.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,921,856 |
|
ResetEngine.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
42,384 |
|
SysResetErr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
75,176 |
|
srms.dat |
無版本 |
17-10月-25 |
18:25 |
60,961 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
ResetEngOnline.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
sysreseterr.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,560 |
|
ResetEngine.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
tcpip.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,499,424 |
|
FWPKCLNT.SYS |
10.0.26100.7014 |
17-10月-25 |
18:25 |
583,040 |
|
tcpipreg.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,016 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
262,144 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
269,824 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,216 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
269,312 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,632 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,632 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,192 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
259,072 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,776 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
252,928 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
252,416 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,192 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,704 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
263,168 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,216 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
269,312 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,264 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,728 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,752 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
264,704 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
265,216 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
262,656 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
263,680 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
267,264 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
249,344 |
|
tcpip.sys.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
249,856 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
71,704 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
117,200 |
|
tbs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
79,232 |
|
usodocked.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
651,264 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
usosvc.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
8acdd7e8a35f165b675b664e7ef8753ef4782f32.xml |
無版本 |
17-10月-25 |
18:25 |
3,314 |
|
72aceda3d9ebaa195b776ea9042fdf4dc3d29834.xml |
無版本 |
17-10月-25 |
18:25 |
2,496 |
|
7bc20c224f17145165aedb3fce9bda4f3c563cd7.xml |
無版本 |
17-10月-25 |
18:25 |
2,344 |
|
465bb23da8d1bea1a024758ba463bc1a7c487362.xml |
無版本 |
17-10月-25 |
18:25 |
2,458 |
|
7106fe8ce0b33cfdfee8b58e7e1b0a812935905e.xml |
無版本 |
17-10月-25 |
18:25 |
2,344 |
|
518f3ea9dc67aa5af7eb2840a6f77c874c2b2a17.xml |
無版本 |
17-10月-25 |
18:25 |
2,476 |
|
99c5248bd8c3356e9a42f332cab9b22eae3856df.xml |
無版本 |
17-10月-25 |
18:25 |
2,488 |
|
ef338bad6c4b025dc9c8f4f87a98276b2139d403.xml |
無版本 |
17-10月-25 |
18:25 |
2,482 |
|
0e0337eedd34f1bed8e9bc3202a2754e48b705af.xml |
無版本 |
17-10月-25 |
18:25 |
2,500 |
|
4ba05104f3d293466a50d8de04318624ab592070.xml |
無版本 |
17-10月-25 |
18:25 |
2,476 |
|
81d5c60cdaa2f6bac600452c12eac91e3823d9ef.xml |
無版本 |
17-10月-25 |
18:25 |
3,876 |
|
90eaab3b92938b566b871d11d7a2c86b081b26d4.xml |
無版本 |
17-10月-25 |
18:25 |
2,460 |
|
c20df1ed8df28c31d513bd896b58980c00c8b298.xml |
無版本 |
17-10月-25 |
18:25 |
878 |
|
5c7e9e098d198f0114f76066999378607084a638.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
68feea34ca8e40dee5faab63604db4cd1d7a3e77.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
56a7d507d06f3d51821e1124e642fa74ff3397af.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
3332a645bfab2f45c96ade4c05630863cbdcfbd1.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
e4c1f6f26bc4ae6ba77734b6aa93d400b87278bb.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
b2617fe77af0e357462c58cb9ab1bbc2a243ab95.xml |
無版本 |
17-10月-25 |
18:25 |
1,034 |
|
0690201f6b392ef45758aa8180e54b80d4ff1a6a.xml |
無版本 |
17-10月-25 |
18:25 |
2,270 |
|
3cee7b10553edccb79ba709ba53630469cb48843.xml |
無版本 |
17-10月-25 |
18:25 |
1,234 |
|
23d343cca2905f5a9d8ed56e2f7308cf612ba7ec.xml |
無版本 |
17-10月-25 |
18:25 |
976 |
|
43ee7b2a373632f9a701249fd96d0edec2ff1279.xml |
無版本 |
17-10月-25 |
18:25 |
4,202 |
|
usosvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
110,592 |
|
usosvcimpl.dll |
1450.2510.14022.1 |
17-10月-25 |
18:25 |
1,422,752 |
|
MoUsoCoreWorker.exe |
1450.2510.14022.1 |
17-10月-25 |
18:25 |
5,139,896 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,373,304 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
641,920 |
|
Ucx01000.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
308,648 |
|
DuCsps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
139,264 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
204,800 |
|
usocoreps.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
65,536 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
266,240 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
51,048 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
71,704 |
|
nsisvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
61,440 |
|
nsiproxy.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
77,824 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
489,080 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
170,888 |
|
win32k.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
808,360 |
|
win32kfull.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,268,032 |
|
win32kbase.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,334,144 |
|
win32kbase_rs.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
159,744 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,319,512 |
|
winpeshl.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
98,304 |
|
wpeutil.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
200,704 |
|
wpeutil.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,768 |
|
wpeinit.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
61,440 |
|
startnet.cmd |
無版本 |
17-10月-25 |
18:25 |
9 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,776 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
8,704 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,680 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
11,264 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
10,752 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
winpeshl.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,072 |
|
wpeutil.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,168 |
|
CloudRecApi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,016 |
|
CloudRecSvc.exe |
1,001 |
17-10月-25 |
18:25 |
106,496 |
|
ReAgent.xml |
無版本 |
17-10月-25 |
18:25 |
837 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
742,800 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
102,400 |
|
StartRep.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,277,952 |
|
RecHost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
152,992 |
|
SrtTel.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,754,520 |
|
RecEnv.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
484,752 |
|
BootRec.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
192,512 |
|
DUTProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
365,968 |
|
WinSetupBak.hiv |
無版本 |
17-10月-25 |
18:25 |
8,192 |
|
WinSetupBak.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
226,688 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
36,352 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,840 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
39,936 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,648 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
43,520 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
29,184 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,768 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,576 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,400 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,136 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
36,352 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,600 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,960 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
28,160 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,632 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
22,528 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,992 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,432 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,328 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,112 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
37,888 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
40,448 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
29,184 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,136 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,912 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,136 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
37,888 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
26,624 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
34,816 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,088 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
34,816 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
25,088 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,608 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
5,120 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,872 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,896 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
StartRep.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,872 |
|
RecEnv.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,896 |
|
BootRec.exe.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
3,584 |
|
DUTProvider.dll.mui |
10.0.26100.7014 |
17-10月-25 |
18:25 |
4,096 |
|
wow64con.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
108,912 |
|
fvevol.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
972,184 |
|
dumpfve.sys |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,488 |
|
bcrypt.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
114,160 |
|
bcryptprimitives.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
473,192 |
|
cryptbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
32,624 |
|
cryptsp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
77,048 |
|
DismCore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
371,072 |
|
DismProv.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
209,304 |
|
DismCorePS.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
98,688 |
|
LogProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
76,184 |
|
FolderProvider.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
59,776 |
|
dhcpcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
383,384 |
|
dhcpcsvc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,200 |
|
dhcpcore6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
261,032 |
|
dhcpcsvc6.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
86,432 |
|
wer.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
814,072 |
|
weretw.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
188,000 |
|
werdiagcontroller.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
41,984 |
|
wermgr.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
240,000 |
|
WerFault.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
538,496 |
|
WerFaultSecure.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
186,504 |
|
Faultrep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
457,712 |
|
WerEnc.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
27,928 |
|
iertutil.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
2,357,880 |
|
msIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
205,312 |
|
edgeIso.dll |
11.0.26100.7014 |
17-10月-25 |
18:25 |
373,248 |
|
kernel.appcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
74,992 |
|
kernel32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
687,344 |
|
KernelBase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
2,934,832 |
|
api-ms-win-core-comm-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-console-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-datetime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-datetime-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-debug-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,696 |
|
api-ms-win-core-debug-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-delayload-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,192 |
|
api-ms-win-core-errorhandling-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-errorhandling-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-fibers-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,696 |
|
api-ms-win-core-fibers-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,176 |
|
api-ms-win-core-file-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,256 |
|
api-ms-win-core-file-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-file-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-handle-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-interlocked-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-io-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-io-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-libraryloader-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-libraryloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-localization-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,768 |
|
api-ms-win-core-localization-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,160 |
|
api-ms-win-core-memory-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-memory-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-memory-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,224 |
|
api-ms-win-core-namedpipe-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-processenvironment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-core-processenvironment-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-processthreads-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,232 |
|
api-ms-win-core-processthreads-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-processthreads-l1-1-2.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-profile-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-realtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-registry-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,760 |
|
api-ms-win-core-rtlsupport-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-core-stringloader-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-synch-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,744 |
|
api-ms-win-core-synch-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,208 |
|
api-ms-win-core-sysinfo-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,736 |
|
api-ms-win-core-sysinfo-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-sysinfo-l1-2-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-threadpool-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
14,760 |
|
api-ms-win-core-timezone-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-core-util-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,704 |
|
api-ms-win-core-xstate-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-security-base-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,320 |
|
api-ms-win-service-core-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-service-core-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-service-management-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,672 |
|
api-ms-win-service-management-l2-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-service-winsvc-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
API-MS-Win-core-localization-obsolete-l1-2-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,216 |
|
api-ms-win-core-threadpool-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-core-threadpool-legacy-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,688 |
|
api-ms-win-core-wow64-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
12,712 |
|
api-ms-win-service-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-service-private-l1-1-1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-conio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-convert-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
16,768 |
|
api-ms-win-crt-environment-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-crt-filesystem-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,248 |
|
api-ms-win-crt-heap-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,720 |
|
api-ms-win-crt-locale-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,184 |
|
api-ms-win-crt-math-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
23,456 |
|
api-ms-win-crt-multibyte-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
20,888 |
|
api-ms-win-crt-private-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
67,456 |
|
api-ms-win-crt-process-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,696 |
|
api-ms-win-crt-runtime-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,792 |
|
api-ms-win-crt-stdio-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
18,816 |
|
api-ms-win-crt-string-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,352 |
|
api-ms-win-crt-time-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
15,272 |
|
api-ms-win-crt-utility-l1-1-0.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
13,200 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,114,136 |
|
migcore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
7,157,704 |
|
migstore.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,046,440 |
|
mighost.exe |
10.0.26100.7014 |
17-10月-25 |
18:25 |
254,848 |
|
migres.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,304 |
|
migapp.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
231,848 |
|
MXEAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
274,840 |
|
AppExtAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
346,496 |
|
csiagent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
527,248 |
|
cmi2migxml.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
158,592 |
|
SFCN.dat |
無版本 |
17-10月-25 |
18:25 |
18:24 |
|
SFLCID.dat |
無版本 |
17-10月-25 |
18:25 |
1,644 |
|
SFLISTXP.dat |
無版本 |
17-10月-25 |
18:25 |
1,459,226 |
|
SFLISTLH.dat |
無版本 |
17-10月-25 |
18:25 |
3,347,940 |
|
SFLISTW7.dat |
無版本 |
17-10月-25 |
18:25 |
1,703,368 |
|
SFLISTW8.dat |
無版本 |
17-10月-25 |
18:25 |
2,608,858 |
|
SFLISTWB.dat |
無版本 |
17-10月-25 |
18:25 |
3,172,904 |
|
SFLISTWT.dat |
無版本 |
17-10月-25 |
18:25 |
4,935,402 |
|
SFLISTRS1.dat |
無版本 |
17-10月-25 |
18:25 |
5,593,182 |
|
SFPAT.inf |
無版本 |
17-10月-25 |
18:25 |
11,602 |
|
SFPATXP.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
4,355 |
|
SFPATLH.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
8,678 |
|
SFPATW7.inf |
無版本 |
17-10月-25 |
18:25 |
17,396 |
|
SFPATW8.inf |
無版本 |
17-10月-25 |
18:25 |
79,818 |
|
SFPATWB.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
91,635 |
|
SFPATWT.inf 網站 |
無版本 |
17-10月-25 |
18:25 |
165,729 |
|
SFPATRS1.inf |
無版本 |
17-10月-25 |
18:25 |
169,730 |
|
msasn1.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
52,240 |
|
msvcrt.dll |
7.0.26100.7014 |
17-10月-25 |
18:25 |
809,392 |
|
nlaapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
24,064 |
|
nlmproxy.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
19,456 |
|
nlmsprep.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
17,920 |
|
ntdll.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,819,272 |
|
rpcrt4.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
772,200 |
|
KerbClientShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
165,896 |
|
sechost.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
529,520 |
|
fveapibase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
626,176 |
|
fveapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,081,856 |
|
kerberos.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,044,992 |
|
kerb3961.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
134,848 |
|
NtlmShared.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
68,232 |
|
ServicingCommon.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
763,440 |
|
DiagnosticDataSettings.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
38,832 |
|
tbs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
84,816 |
|
ucrtbase.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,114,136 |
|
msvcp_win.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
505,712 |
|
usoapi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
99,840 |
|
Windows.Management.Update.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
217,600 |
|
nsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
21,776 |
|
winnsi.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
35,184 |
|
ws2_32.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
392,096 |
|
win32u.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
106,400 |
|
WindowsCodecs.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
1,981,344 |
|
ReAgent.xml |
無版本 |
17-10月-25 |
18:25 |
837 |
|
ReAgent.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
637,824 |
|
ReInfo.dll |
10.0.26100.7014 |
17-10月-25 |
18:25 |
62,976 |
參考資料
查詢詞: safeos du