Windows 10 のサポートは、2025 年 10 月に終了します
2025 年 10 月 14 日以降、Windows Update を介した Windows 10 の無料ソフトウェア更新プログラム、テクニカル サポート、セキュリティ修正プログラムが、Microsoft から提供されなくなります。 お使いの PC は引き続き機能しますが、Windows 11 に移行することを推奨します。
|
日付の変更 |
説明を変更する |
|
2025 年 5 月 22 日 |
更新プログラムは Microsoft Update カタログからのみ利用可能であるため、Windows Update セクションを修正しました。 |
概要
この更新プログラムにより、バージョン 21H2 およびバージョン 22H2 Windows 10の Windows 回復環境 (WinRE) が強化Windows 10。
この更新プログラムの入手方法
この更新プログラムのインストール
この更新プログラムをインストールするには、次のいずれかのリリース チャネルを使用してください。
|
使用可能 |
次のステップ |
|
|
この更新プログラムは、Windows Updateでは使用できません。 Microsoft Update カタログからのみ使用できます。 |
|
使用可能 |
次のステップ |
|
|
この更新プログラムのスタンドアロン パッケージを取得するには、 Microsoft Update Catalog Web サイトにアクセスします。 更新プログラム カタログから更新プログラムをダウンロードするには、「Windows Update カタログから更新プログラムをダウンロードする手順」を参照してください。 この更新プログラムを手動でインストールするには、「更新プログラム パッケージをWindows REに追加する」を参照してください。 |
|
使用可能 |
次のステップ |
|
|
その他のリリース チャネルを参照してください。 |
|
前提条件 |
この更新プログラムを適用するための必要条件はありません。 |
|
再起動に関する情報 |
この更新プログラムの適用後、デバイスを再起動する必要はありません。 |
|
アンインストール情報 |
この更新プログラムは、一度 Windows イメージに適用されると、削除することができません。 |
|
更新プログラムの置き換えに関する情報 |
この更新プログラムは、以前にリリースされた更新プログラム のKB5055674に置き換えられます。 |
|
この更新プログラムのインストールを確認する |
この更新プログラムをインストールした後、デバイスにインストールされる WinRE バージョンは 10.0.19041.5847 である必要があります。 |
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
WinREAgent は、Windows 回復環境 (WinRE) に関連するイベントをログに記録し、主に回復イメージの作成、変更、使用状況に関する詳細を記録します。 この場合、イベント ID: 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 回復環境の場所のパスに注意してください。 この例の場合、次の場所が表示されます: \\?\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 です。
ファイル情報
このソフトウェア更新プログラムの英語 (米国) 版では、次の属性を持つファイルがインストールされます。 この更新プログラムには、追加の言語のファイルが含まれている場合があります。
|
ファイル名 |
ファイルのバージョン |
日付 |
時刻 |
ファイル サイズ |
|
acpi.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
4,144 |
|
acpi.sys |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
606,592 |
|
pci.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
16,932 |
|
pci.sys |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
359,808 |
|
winload.exe |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
1,302,680 |
|
winload.efi |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
1,459,208 |
|
bootmgfw.efi |
10.0.19041.3920 |
26-Apr-25 |
16:13 |
1,328,608 |
|
bootmgr.efi |
10.0.19041.3920 |
26-Apr-25 |
16:13 |
1,313,776 |
|
boot.stl |
バージョン管理されていません |
26-Apr-25 |
16:13 |
10,689 |
|
winsipolicy.p7b |
バージョン管理されていません |
26-Apr-25 |
16:13 |
9,796 |
|
bootux.dll |
10.0.19041.505 |
26-Apr-25 |
16:13 |
3,937,792 |
|
winresume.exe |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
1,015,000 |
|
winresume.efi |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
1,152,888 |
|
BootMenuUX.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
284,672 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
37,376 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
45,056 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
43,520 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
40,448 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
46,592 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
49,664 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
36,864 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
44,544 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
39,936 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
41,984 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
47,616 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
33,280 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
42,496 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
24,576 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
22,016 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
40,960 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
45,568 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
43,008 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
17,408 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
16:13 |
17,920 |
|
bootim.exe |
10.0.19041.505 |
26-Apr-25 |
16:13 |
21,504 |
|
ci.dll |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
746,000 |
|
driver.stl |
バージョン管理されていません |
26-Apr-25 |
16:13 |
19,991 |
|
fltMgr.sys |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
303,592 |
|
hal.dll |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
408,944 |
|
halmacpi.dll |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
408,944 |
|
cmi2migxml.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
147,360 |
|
csiagent.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
535,984 |
|
diagER.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
42,912 |
|
hwcompat.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
160,160 |
|
hwcompat.txt |
バージョン管理されていません |
26-Apr-25 |
16:13 |
601,293 |
|
hwexclude.txt |
バージョン管理されていません |
26-Apr-25 |
16:13 |
51 |
|
migapp.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
654,548 |
|
migcore.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
6,834,096 |
|
mighost.exe |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
249,760 |
|
migres.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
17,312 |
|
migisol.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
119,728 |
|
migstore.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
958,880 |
|
migsys.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
325,040 |
|
MXEAgent.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
258,992 |
|
offline.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
38,899 |
|
oscomps.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
435,175 |
|
oscomps.woa.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
249,101 |
|
osfilter.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
21,299 |
|
pnppropmig.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
63,408 |
|
reagent.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
954,272 |
|
ReserveManager.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
236,976 |
|
setupplatform.cfg |
バージョン管理されていません |
26-Apr-25 |
16:13 |
6,303 |
|
setupplatform.dll |
1.60.19041.5728 |
26-Apr-25 |
16:13 |
7,230,880 |
|
setupplatform.exe |
1.60.19041.5728 |
26-Apr-25 |
16:13 |
152,992 |
|
SFCN.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
18:24 |
|
SFLCID.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
1,644 |
|
SFLISTW7.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
1,703,368 |
|
SFLISTW8.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
2,608,858 |
|
SFLISTWB.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
3,172,904 |
|
SFLISTWT.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
4,935,438 |
|
sflistw8.woa.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
954,436 |
|
SFLISTRS1.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
5,593,408 |
|
sflistwb.woa.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
1,150,134 |
|
sflistwt.woa.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
2,636,850 |
|
SFPAT.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
11,365 |
|
SFPATW7.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
17,396 |
|
SFPATW8.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
79,818 |
|
SFPATWB.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
91,635 |
|
SFPATWT.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
165,729 |
|
SFPATRS1.inf |
バージョン管理されていません |
26-Apr-25 |
16:13 |
169,870 |
|
unbcl.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
837,040 |
|
upgradeagent.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
2,418,592 |
|
upgradeagent.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
70,907 |
|
upgrade_comp.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
4,320 |
|
upgrade_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
208,513 |
|
upgrade_data.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
41,108 |
|
upgrade_frmwrk.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
18,614 |
|
upgWow_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
114,569 |
|
uninstall.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
3,508 |
|
uninstall_data.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
11,122 |
|
wdsutil.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
239,008 |
|
ClipSp.sys |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
881,520 |
|
netio.sys |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
418,736 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
1,681,936 |
|
ntfs.sys |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
2,364,288 |
|
ntoskrnl.exe |
10.0.19041.3562 |
26-Apr-25 |
16:13 |
7,210,368 |
|
diager.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
43,016 |
|
diagtrack.dll |
10.0.10586.10008 |
26-Apr-25 |
16:13 |
919,736 |
|
diagtrackrunner.exe |
10.0.10586.0 |
26-Apr-25 |
16:13 |
79,040 |
|
reagent.admx |
バージョン管理されていません |
26-Apr-25 |
16:13 |
1,240 |
|
reagent.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
952,304 |
|
reagent.xml |
バージョン管理されていません |
26-Apr-25 |
16:13 |
837 |
|
SetupPlatform.cfg |
バージョン管理されていません |
26-Apr-25 |
16:13 |
10,452 |
|
SetupPlatform.dll |
1.60.19041.5125 |
26-Apr-25 |
16:13 |
7,233,032 |
|
SetupPlatform.exe |
1.60.19041.5125 |
26-Apr-25 |
16:13 |
153,096 |
|
unbcl.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
837,104 |
|
wdsclientapi.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
250,512 |
|
wdscore.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
202,744 |
|
wdscsl.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
51,720 |
|
wdsimage.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
752,256 |
|
wdstptc.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
518,784 |
|
wdsutil.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
239,096 |
|
hwcompat.dll |
10.0.19041.5125 |
26-Apr-25 |
16:13 |
160,248 |
|
fvevol.sys |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
663,496 |
|
dumpfve.sys |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
78,144 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
361,472 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
768,512 |
|
ResetEngine.dll |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
1,923,400 |
|
ResetEngine.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
19,312 |
|
ResetPluginHost.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
24,064 |
|
reseteng.dll |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
1,031,168 |
|
resetengmig.dll |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
64,512 |
|
ResetEngInterfaces.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
8,192 |
|
srms.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
59,554 |
|
srms62.dat |
バージョン管理されていません |
26-Apr-25 |
16:13 |
22,841 |
|
sysreset.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
287,232 |
|
systemreset.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
451,368 |
|
ResetEngOnline.dll |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
142,848 |
|
SysResetErr.exe |
10.0.19041.1584 |
26-Apr-25 |
16:13 |
37,200 |
|
tcpip.sys |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
2,362,824 |
|
FWPKCLNT.SYS |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
353,200 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
170,496 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
171,520 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
172,544 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
173,568 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
169,984 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
171,008 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
172,032 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
169,472 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
173,056 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
165,888 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
165,376 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
174,592 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
163,840 |
|
winpeshl.exe |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
25,600 |
|
wpeutil.dll |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
103,424 |
|
wpeutil.exe |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
10,240 |
|
wpeinit.exe |
10.0.19041.5847 |
26-Apr-25 |
16:13 |
27,136 |
|
startnet.cmd |
バージョン管理されていません |
26-Apr-25 |
16:13 |
9 |
|
CloudRecApi.dll |
10.0.19041.1262 |
26-Apr-25 |
16:13 |
42,496 |
|
CloudRecSvc.exe |
1.0.0.1 |
26-Apr-25 |
16:13 |
115,200 |
|
StartRep.exe |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
839,168 |
|
RecEnv.exe |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
426,928 |
|
BootRec.exe |
10.0.19041.5728 |
26-Apr-25 |
16:13 |
314,368 |
|
ファイル名 |
ファイルのバージョン |
日付 |
時刻 |
ファイル サイズ |
|
acpi.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
4,152 |
|
acpi.sys |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
810,480 |
|
pci.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
16,940 |
|
pci.sys |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
478,696 |
|
skci.dll |
10.0.19041.3920 |
26-Apr-25 |
1,621 |
309,632 |
|
winload.exe |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
1,582,128 |
|
winload.efi |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
1,859,048 |
|
bootmgfw.efi |
10.0.19041.3920 |
26-Apr-25 |
1,621 |
1,590,640 |
|
bootmgr.efi |
10.0.19041.3920 |
26-Apr-25 |
1,621 |
1,574,272 |
|
boot.stl |
バージョン管理されていません |
26-Apr-25 |
1,621 |
10,895 |
|
winsipolicy.p7b |
バージョン管理されていません |
26-Apr-25 |
1,621 |
9,796 |
|
bootux.dll |
10.0.19041.505 |
26-Apr-25 |
1,621 |
3,992,576 |
|
winresume.exe |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
1,231,472 |
|
winresume.efi |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
1,433,920 |
|
BootMenuUX.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
364,032 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
37,376 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
45,056 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
43,520 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
40,448 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
46,592 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
49,664 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
36,864 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
44,544 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
39,936 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
41,984 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
47,616 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
33,280 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
42,496 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
24,576 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
22,016 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
40,960 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
45,568 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
43,008 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
17,408 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
1,621 |
17,920 |
|
bootim.exe |
10.0.19041.505 |
26-Apr-25 |
1,621 |
26,624 |
|
driversipolicy.p7b |
バージョン管理されていません |
26-Apr-25 |
1,621 |
150,679 |
|
ci.dll |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
950,560 |
|
driver.stl |
バージョン管理されていません |
26-Apr-25 |
1,621 |
32,631 |
|
fltMgr.sys |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
430,048 |
|
hal.dll |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
18,408 |
|
cmi2migxml.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
192,440 |
|
csiagent.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
725,920 |
|
diagER.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
55,216 |
|
hwcompat.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
209,824 |
|
hwcompat.txt |
バージョン管理されていません |
26-Apr-25 |
1,621 |
753,071 |
|
hwexclude.txt |
バージョン管理されていません |
26-Apr-25 |
1,621 |
51 |
|
migapp.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
654,548 |
|
migcore.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
9,097,632 |
|
mighost.exe |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
260,528 |
|
migres.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
17,328 |
|
migisol.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
146,376 |
|
migstore.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
1,271,240 |
|
migsys.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
436,128 |
|
MXEAgent.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
360,392 |
|
offline.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
38,899 |
|
oscomps.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
435,175 |
|
oscomps.woa.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
249,101 |
|
osfilter.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
21,299 |
|
pnppropmig.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
80,328 |
|
reagent.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
1,153,992 |
|
ReserveManager.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
308,144 |
|
setupplatform.cfg |
バージョン管理されていません |
26-Apr-25 |
1,621 |
6,303 |
|
setupplatform.dll |
1.60.19041.5728 |
26-Apr-25 |
1,621 |
9,591,752 |
|
setupplatform.exe |
1.60.19041.5728 |
26-Apr-25 |
1,621 |
170,936 |
|
SFCN.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
18:24 |
|
SFLCID.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
1,644 |
|
SFLISTW7.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
1,703,368 |
|
SFLISTW8.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
2,608,858 |
|
SFLISTWB.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
3,172,904 |
|
SFLISTWT.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
4,935,438 |
|
sflistw8.woa.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
954,436 |
|
SFLISTRS1.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
5,593,408 |
|
sflistwb.woa.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
1,150,134 |
|
sflistwt.woa.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
2,636,850 |
|
SFPAT.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
11,365 |
|
SFPATW7.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
17,396 |
|
SFPATW8.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
79,818 |
|
SFPATWB.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
91,635 |
|
SFPATWT.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
165,729 |
|
SFPATRS1.inf |
バージョン管理されていません |
26-Apr-25 |
1,621 |
169,870 |
|
unbcl.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
1,099,184 |
|
upgradeagent.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
3,178,400 |
|
upgradeagent.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
70,907 |
|
upgrade_comp.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
4,320 |
|
upgrade_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
208,513 |
|
upgrade_data.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
41,108 |
|
upgrade_frmwrk.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
18,614 |
|
upgWow_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
114,569 |
|
uninstall.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
3,508 |
|
uninstall_data.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
11,122 |
|
wdsutil.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
306,608 |
|
ClipSp.sys |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
1,102,208 |
|
netio.sys |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
613,808 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
2,028,544 |
|
ntfs.sys |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
2,844,120 |
|
ntoskrnl.exe |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
10,872,296 |
|
diager.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
55,280 |
|
diagtrack.dll |
10.0.10586.10008 |
26-Apr-25 |
1,621 |
1,362,104 |
|
diagtrackrunner.exe |
10.0.10586.0 |
26-Apr-25 |
1,621 |
88,256 |
|
reagent.admx |
バージョン管理されていません |
26-Apr-25 |
1,621 |
1,240 |
|
reagent.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
1,151,984 |
|
reagent.xml |
バージョン管理されていません |
26-Apr-25 |
1,621 |
837 |
|
SetupPlatform.cfg |
バージョン管理されていません |
26-Apr-25 |
1,621 |
10,452 |
|
SetupPlatform.dll |
1.60.19041.5125 |
26-Apr-25 |
1,621 |
9,594,864 |
|
SetupPlatform.exe |
1.60.19041.5125 |
26-Apr-25 |
1,621 |
170,992 |
|
unbcl.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
1,099,272 |
|
wdsclientapi.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
309,904 |
|
wdscore.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
263,688 |
|
wdscsl.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
63,456 |
|
wdsimage.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
952,936 |
|
wdstptc.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
656,528 |
|
wdsutil.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
306,656 |
|
hwcompat.dll |
10.0.19041.5125 |
26-Apr-25 |
1,621 |
209,888 |
|
fvevol.sys |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
813,496 |
|
dumpfve.sys |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
94,768 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
431,616 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
991,744 |
|
ResetEngine.dll |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
2,430,280 |
|
ResetEngine.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
21,336 |
|
ResetPluginHost.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
31,232 |
|
reseteng.dll |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
1,257,472 |
|
resetengmig.dll |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
82,432 |
|
ResetEngInterfaces.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
10,240 |
|
srms.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
59,554 |
|
srms62.dat |
バージョン管理されていません |
26-Apr-25 |
1,621 |
22,841 |
|
sysreset.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
342,016 |
|
systemreset.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
521,096 |
|
ResetEngOnline.dll |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
192,512 |
|
SysResetErr.exe |
10.0.19041.1584 |
26-Apr-25 |
1,621 |
43,880 |
|
tcpip.sys |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
2,998,728 |
|
FWPKCLNT.SYS |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
503,712 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
170,496 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
171,520 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
172,544 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
173,568 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
169,984 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
171,008 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
172,032 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
169,472 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
173,056 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
165,888 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
165,376 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
174,592 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
163,840 |
|
winpeshl.exe |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
33,280 |
|
wpeutil.dll |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
127,488 |
|
wpeutil.exe |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
12,288 |
|
wpeinit.exe |
10.0.19041.5847 |
26-Apr-25 |
1,621 |
33,792 |
|
startnet.cmd |
バージョン管理されていません |
26-Apr-25 |
1,621 |
9 |
|
CloudRecApi.dll |
10.0.19041.1262 |
26-Apr-25 |
1,621 |
52,736 |
|
CloudRecSvc.exe |
1.0.0.1 |
26-Apr-25 |
1,621 |
147,968 |
|
StartRep.exe |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
997,376 |
|
RecEnv.exe |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
525,256 |
|
BootRec.exe |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
387,072 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
1,621 |
1,700,440 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
361,472 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
1,621 |
768,512 |
|
ファイル名 |
ファイルのバージョン |
日付 |
時刻 |
ファイル サイズ |
|
acpi.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
4,152 |
|
acpi.sys |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
756,096 |
|
pci.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
16,940 |
|
pci.sys |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
398,208 |
|
skci.dll |
10.0.19041.3920 |
26-Apr-25 |
19:16 |
220,720 |
|
winload.efi |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
1,831,648 |
|
bootmgfw.efi |
10.0.19041.3920 |
26-Apr-25 |
19:16 |
1,567,600 |
|
bootmgr.efi |
10.0.19041.3920 |
26-Apr-25 |
19:16 |
1,550,320 |
|
boot.stl |
バージョン管理されていません |
26-Apr-25 |
19:16 |
10,717 |
|
winsipolicy.p7b |
バージョン管理されていません |
26-Apr-25 |
19:16 |
9,796 |
|
bootux.dll |
10.0.19041.505 |
26-Apr-25 |
19:16 |
4,006,400 |
|
winresume.efi |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
1,403,408 |
|
BootMenuUX.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
375,808 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
37,376 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
45,056 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
43,520 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
40,448 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
46,592 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
49,664 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
36,864 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
44,544 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
39,936 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
41,984 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
47,616 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
33,280 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
42,496 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
24,576 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
22,016 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
40,960 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
45,568 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
43,008 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
17,408 |
|
bootux.dll.mui |
10.0.19041.505 |
26-Apr-25 |
19:16 |
17,920 |
|
bootim.exe |
10.0.19041.505 |
26-Apr-25 |
19:16 |
26,624 |
|
driversipolicy.p7b |
バージョン管理されていません |
26-Apr-25 |
19:16 |
150,679 |
|
ci.dll |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
814,736 |
|
driver.stl |
バージョン管理されていません |
26-Apr-25 |
19:16 |
15,114 |
|
fltMgr.sys |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
405,872 |
|
hal.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
17,280 |
|
cmi2migxml.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
205,256 |
|
csiagent.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
765,896 |
|
diagER.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
55,240 |
|
hwcompat.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
224,184 |
|
hwcompat.txt |
バージョン管理されていません |
26-Apr-25 |
19:16 |
199,193 |
|
hwexclude.txt |
バージョン管理されていません |
26-Apr-25 |
19:16 |
51 |
|
migapp.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
654,548 |
|
migcore.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
9,820,104 |
|
mighost.exe |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
262,600 |
|
migres.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
17,336 |
|
migisol.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
141,240 |
|
migstore.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
1,342,920 |
|
migsys.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
466,376 |
|
MXEAgent.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
380,336 |
|
offline.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
38,899 |
|
oscomps.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
435,175 |
|
oscomps.woa.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
249,101 |
|
osfilter.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
21,299 |
|
pnppropmig.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
82,888 |
|
reagent.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
1,179,080 |
|
ReserveManager.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
307,656 |
|
setupplatform.cfg |
バージョン管理されていません |
26-Apr-25 |
19:16 |
6,303 |
|
setupplatform.dll |
1.60.19041.5728 |
26-Apr-25 |
19:16 |
10,371,488 |
|
setupplatform.exe |
1.60.19041.5728 |
26-Apr-25 |
19:16 |
175,024 |
|
SFCN.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
18:24 |
|
SFLCID.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
1,644 |
|
SFLISTW7.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
1,703,368 |
|
SFLISTW8.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
2,608,858 |
|
SFLISTWB.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
3,172,904 |
|
SFLISTWT.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
4,935,438 |
|
sflistw8.woa.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
954,436 |
|
SFLISTRS1.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
5,593,408 |
|
sflistwb.woa.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
1,150,134 |
|
sflistwt.woa.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
2,636,850 |
|
SFPAT.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
11,365 |
|
SFPATW7.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
17,396 |
|
SFPATW8.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
79,818 |
|
SFPATWB.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
91,635 |
|
SFPATWT.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
165,729 |
|
SFPATRS1.inf |
バージョン管理されていません |
26-Apr-25 |
19:16 |
169,870 |
|
unbcl.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
1,151,392 |
|
upgradeagent.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
3,356,104 |
|
upgradeagent.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
70,907 |
|
upgrade_comp.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
4,320 |
|
upgrade_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
208,513 |
|
upgrade_data.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
41,108 |
|
upgrade_frmwrk.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
18,614 |
|
upgWow_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
114,569 |
|
upgWowA32_bulk.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
114,473 |
|
uninstall.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
3,508 |
|
uninstall_data.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
11,122 |
|
wdsutil.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
323,488 |
|
ClipSp.sys |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
986,088 |
|
netio.sys |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
544,176 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
1,966,952 |
|
ntfs.sys |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
2,810,736 |
|
ntoskrnl.exe |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
9,963,480 |
|
diager.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
55,288 |
|
diagtrack.dll |
10.0.10586.0 |
26-Apr-25 |
19:16 |
1,561,952 |
|
diagtrackrunner.exe |
10.0.10586.0 |
26-Apr-25 |
19:16 |
90,304 |
|
reagent.admx |
バージョン管理されていません |
26-Apr-25 |
19:16 |
1,240 |
|
reagent.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
1,177,080 |
|
reagent.xml |
バージョン管理されていません |
26-Apr-25 |
19:16 |
837 |
|
SetupPlatform.cfg |
バージョン管理されていません |
26-Apr-25 |
19:16 |
10,452 |
|
SetupPlatform.dll |
1.60.19041.5125 |
26-Apr-25 |
19:16 |
10,374,624 |
|
SetupPlatform.exe |
1.60.19041.5125 |
26-Apr-25 |
19:16 |
175,072 |
|
unbcl.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
1,151,472 |
|
wdsclientapi.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
311,920 |
|
wdscore.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
268,256 |
|
wdscsl.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
65,504 |
|
wdsimage.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
967,808 |
|
wdstptc.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
653,936 |
|
wdsutil.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
323,568 |
|
hwcompat.dll |
10.0.19041.5125 |
26-Apr-25 |
19:16 |
224,224 |
|
fvevol.sys |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
763,312 |
|
dumpfve.sys |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
75,672 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
439,296 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
991,232 |
|
ResetEngine.dll |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
2,627,912 |
|
ResetEngine.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
21,328 |
|
ResetPluginHost.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
32,256 |
|
reseteng.dll |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
1,269,760 |
|
resetengmig.dll |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
86,016 |
|
ResetEngInterfaces.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
9,728 |
|
srms.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
59,554 |
|
srms62.dat |
バージョン管理されていません |
26-Apr-25 |
19:16 |
22,841 |
|
sysreset.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
351,232 |
|
systemreset.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
541,752 |
|
ResetEngOnline.dll |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
205,312 |
|
SysResetErr.exe |
10.0.19041.1584 |
26-Apr-25 |
19:16 |
44,872 |
|
tcpip.sys |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
2,803,128 |
|
FWPKCLNT.SYS |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
503,240 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
170,496 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
171,520 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
172,544 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
173,568 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
169,984 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
171,008 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
172,032 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
169,472 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
173,056 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
165,888 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
165,376 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
174,592 |
|
tcpip.sys.mui |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
163,840 |
|
winpeshl.exe |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
33,792 |
|
wpeutil.dll |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
131,072 |
|
wpeutil.exe |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
12,800 |
|
wpeinit.exe |
10.0.19041.5847 |
26-Apr-25 |
19:16 |
34,816 |
|
startnet.cmd |
バージョン管理されていません |
26-Apr-25 |
19:16 |
9 |
|
CloudRecApi.dll |
10.0.19041.1262 |
26-Apr-25 |
19:16 |
56,320 |
|
CloudRecSvc.exe |
1.0.0.1 |
26-Apr-25 |
19:16 |
156,672 |
|
StartRep.exe |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
1,010,176 |
|
RecEnv.exe |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
531,872 |
|
BootRec.exe |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
394,240 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
1,567,464 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
335,872 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
671,744 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
2,161,280 |
|
msvcrt.dll |
7.0.19041.3562 |
26-Apr-25 |
19:16 |
1,092,152 |
|
ucrtbase.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
1,771,336 |
|
ntdll.dll |
10.0.19041.3562 |
26-Apr-25 |
19:16 |
1,700,440 |
|
fveapibase.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
361,472 |
|
fveapi.dll |
10.0.19041.5728 |
26-Apr-25 |
19:16 |
768,512 |
参考資料
Microsoft のソフトウェア更新プログラムの説明で使用される標準的な用語の解説
クエリワード: safeos du