Windows セキュア ブート証明書の有効期限
重要: ほとんどの Windows デバイスで使用されるセキュア ブート証明書の有効期限は、2026 年 6 月以降に設定されます。 これは、特定の個人用デバイスとビジネス デバイスが時間内に更新されていない場合に安全に起動する機能に影響する可能性があります。 中断を回避するために、ガイダンスを確認し、証明書を事前に更新するためのアクションを実行することをお勧めします。
Windows デバイス向けの詳細と準備手順については、「Windows セキュア ブート証明書の有効期限と CA 更新プログラム」を参照してください
Windows サーバー向けの詳細と準備手順については、以下のリソースを参照してください。
概要
この更新プログラムにより、Windows 回復環境 (WinRE) が強化されます。
この更新プログラムの入手方法
この更新プログラムのインストール
この更新プログラムをインストールするには、次のいずれかのリリース チャネルを使用してください。
|
使用可能 |
次のステップ |
|
|
この更新プログラムは、Windows Update を介して利用可能です。 ダウンロードとインストールは自動的に行われます。 |
|
使用可能 |
次のステップ |
|
|
この更新プログラムのスタンドアロン パッケージを取得するには、 Microsoft Update Catalog Web サイトにアクセスします。 更新プログラム カタログから更新プログラムをダウンロードするには、「Windows Update カタログから更新プログラムをダウンロードする手順」を参照してください。 この更新プログラムを手動でインストールするには、「更新プログラム パッケージをWindows REに追加する」を参照してください。 |
|
使用可能 |
次のステップ |
|
|
その他のリリース チャネルを参照してください。 |
|
前提条件 |
この更新プログラムを適用するための必要条件はありません。 |
|
再起動に関する情報 |
この更新プログラムの適用後、デバイスを再起動する必要はありません。 |
|
アンインストール情報 |
この更新プログラムは、一度 Windows イメージに適用されると、削除することができません。 |
|
更新プログラムの置き換えに関する情報 |
この更新プログラムは、以前にリリースされた更新プログラム のKB5078169に置き換えられます。 |
|
この更新プログラムのインストールを確認する |
この更新プログラムをインストールした後、デバイスにインストールされる WinRE バージョンは 10.0.28000.1701 である必要があります。 |
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 です。
ファイル情報
このソフトウェア更新プログラムの英語 (米国) 版では、次の属性を持つファイルがインストールされます。 この更新プログラムには、追加の言語のファイルが含まれている場合があります。
|
ファイル名 |
ファイルのバージョン |
日付 |
時刻 |
ファイル サイズ |
|
hvloader.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
251,336 |
|
hvax64.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
2,205,088 |
|
hvix64.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
2,352,544 |
|
{60FD87F8-4593-44A0-91B0-2E0DA022F248}.cip |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
9,172 |
|
driver.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
33,360 |
|
previous.driver.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
33,360 |
|
skci.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
389,872 |
|
advapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
117,160 |
|
comctl32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
49,152 |
|
comdlg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
cryptui.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
dwmapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
55,184 |
|
dxcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
32,768 |
|
fontsub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
32,768 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
96,504 |
|
imm32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
55,224 |
|
kernel32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
170,880 |
|
ole32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
100,632 |
|
oleacc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
pdh.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
45,056 |
|
PerceptionDevice.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
36,864 |
|
psapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
46,960 |
|
rstrtmgr.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
36,864 |
|
setupapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
79,968 |
|
user32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
232,896 |
|
usp10.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
secur32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
45,056 |
|
shell32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
84,104 |
|
shlwapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
92,368 |
|
version.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
32,768 |
|
wevtapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
55,184 |
|
winmm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
65,536 |
|
winspool.drv |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
53,248 |
|
prntvpt.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
wtsapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
55,224 |
|
xinput1_4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
40,960 |
|
kdnet.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
157,088 |
|
kdstub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
87,456 |
|
tcblaunch.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,004,584 |
|
tcbloader.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
316,832 |
|
DrtmAuthTxt.wim |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
23,160 |
|
bootmgfw.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:54 |
3,008,968 |
|
bootmgfw_EX.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:54 |
3,008,824 |
|
SecureBootRecovery.efi |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
173,512 |
|
bootmgr.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:54 |
2,991,008 |
|
boot.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
11,030 |
|
boot.pnd.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
11,733 |
|
winsipolicy.p7b |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
10,360 |
|
winload.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,984,496 |
|
winload.efi |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
3,445,656 |
|
bfsvc.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
126,976 |
|
bootsvc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
315,496 |
|
driversipolicy.p7b |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
238,694 |
|
ci.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,146,072 |
|
exfat.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
452,040 |
|
msimg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
32,768 |
|
mf3216.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
131,072 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
220,464 |
|
gdi32full.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,208,008 |
|
drupdate.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
447,904 |
|
oobeldretw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
27,000 |
|
setupugcetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
27,000 |
|
sysprepetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
31,136 |
|
windeployetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
27,032 |
|
esscli.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
439,752 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
992,672 |
|
mofd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
390,600 |
|
mofinstall.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
128,416 |
|
repdrvfs.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
427,424 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
521,632 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,971,656 |
|
wbemprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
71,072 |
|
wmi_tracing.mof |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
1,682 |
|
wmiutils.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
144,800 |
|
iertutil.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
2,926,920 |
|
msIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
286,720 |
|
edgeIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
442,368 |
|
dxgkrnl.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
5,350,816 |
|
cdd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
335,872 |
|
dxgmms1.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
538,016 |
|
dxgmms2.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,295,776 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
116,224 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
5,120 |
|
cdd.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
3,072 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
5,632 |
|
cdd.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
2,560 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
117,760 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
114,688 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
4,608 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
118,272 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
113,664 |
|
Narrator.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,196,032 |
|
DetailedReading-Default.xml |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
3,944 |
|
Narrator.lnk |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
11:08 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
24,576 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
29,184 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
28,672 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
28,160 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
27,136 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
30,208 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
30,720 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
29,696 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
23,040 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
26,624 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
17,408 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
27,648 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
14,336 |
|
windows.storage.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
8,992,768 |
|
ntoskrnl.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
13,825,480 |
|
ntkrla57.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
12,498,336 |
|
pcrpf.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
344,064 |
|
pcrpf.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
6,144 |
|
refs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
3,904,928 |
|
msrpc.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
423,328 |
|
rpcrt4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,170,848 |
|
fvevol.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,000,864 |
|
fverecoverux.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
139,264 |
|
bcd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
175,048 |
|
hwreqchk.dll |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
443,808 |
|
ServicingCommon.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
927,032 |
|
utcapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
66,976 |
|
wimgapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
935,368 |
|
wdscommonlib.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
337,352 |
|
dismapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,275,336 |
|
dismcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
533,960 |
|
dismcoreps.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
247,200 |
|
dismprov.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
300,488 |
|
deployprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
718,240 |
|
folderprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
95,648 |
|
imagingprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
251,296 |
|
logprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
189,896 |
|
osimageprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
566,688 |
|
UpdateCompression.dll |
5.0.1.1 |
26-2 月 26 日 |
16:54 |
529,824 |
|
vhdprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
599,456 |
|
wimprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
701,856 |
|
unattend.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
357,792 |
|
wpx.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,426,848 |
|
locale.nls |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
862,800 |
|
nlsbres.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
103,840 |
|
fveapibase.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
753,664 |
|
fveapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,425,408 |
|
schannel.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
770,048 |
|
lsm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
950,272 |
|
lagcounterdef.ini |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
1,878 |
|
lagcounterdef.h |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
255 |
|
winsta.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
402,272 |
|
udfs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
405,504 |
|
win32u.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
170,944 |
|
win32k.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
816,584 |
|
win32kfull.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
4,341,760 |
|
win32kbase.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
3,391,488 |
|
win32kbase_rs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
176,128 |
|
winlogon.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
958,464 |
|
sysntfy.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
57,344 |
|
winpeshl.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
90,112 |
|
wpeutil.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
204,800 |
|
wpeutil.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
32,768 |
|
wpeinit.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
61,440 |
|
startnet.cmd |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
9 |
|
winsqlite3.dll |
3.51.1.0 |
26-2 月 26 日 |
16:54 |
1,144,576 |
|
wintrust.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
505,608 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
978,944 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
499,712 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,859,584 |
|
wbemess.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
487,424 |
|
GdiPlus.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,953,792 |
|
advapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
80,704 |
|
comctl32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
18,432 |
|
comdlg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
11,776 |
|
cryptui.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
10,240 |
|
dwmapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
24,392 |
|
dxcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
7,168 |
|
fontsub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
7,168 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
50,168 |
|
imm32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
23,840 |
|
kernel32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
133,360 |
|
ole32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
59,024 |
|
oleacc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
10,752 |
|
pdh.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
11,776 |
|
PerceptionDevice.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
9,728 |
|
psapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
19,752 |
|
rstrtmgr.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
9,728 |
|
setupapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
49,184 |
|
user32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
145,208 |
|
usp10.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
10,752 |
|
secur32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
15,360 |
|
shell32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
45,528 |
|
shlwapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
56,896 |
|
version.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
8,192 |
|
wevtapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
25,456 |
|
winmm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
29,184 |
|
winspool.drv |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
16,896 |
|
prntvpt.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
10,240 |
|
wtsapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
22,856 |
|
xinput1_4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
10,240 |
|
msimg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
7,168 |
|
mf3216.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
87,552 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
161,224 |
|
gdi32full.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
954,568 |
|
iertutil.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
2,352,752 |
|
msIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
205,824 |
|
edgeIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:54 |
375,808 |
|
windows.storage.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
7,235,192 |
|
pcrpf.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
242,176 |
|
rpcrt4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
891,016 |
|
fveapibase.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
631,808 |
|
fveapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,142,272 |
|
schannel.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
553,472 |
|
winsta.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
296,552 |
|
win32u.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
106,432 |
|
winsqlite3.dll |
3.51.1.0 |
26-2 月 26 日 |
16:54 |
894,256 |
|
wintrust.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
392,104 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
819,712 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
403,456 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,666,048 |
|
GdiPlus.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
1,541,632 |
|
wdsnbp.com |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
30,832 |
|
abortpxe.com |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
79 |
|
bootmgr.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:54 |
830,408 |
|
pxeboot.com |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,254 |
|
pxeboot.n12 |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,238 |
|
hdlscom1.com |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,662 |
|
hdlscom2.com |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,662 |
|
hdlscom1.n12 |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,646 |
|
hdlscom2.n12 |
バージョン管理されていません |
26-2 月 26 日 |
16:54 |
25,646 |
|
bootmgfw.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:54 |
2,518,944 |
|
bootmgfw_EX.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:54 |
2,518,832 |
|
ファイル名 |
ファイルのバージョン |
日付 |
時刻 |
ファイル サイズ |
|
hvloader.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
232,904 |
|
hvaa64.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,833,888 |
|
{60FD87F8-4593-44A0-91B0-2E0DA022F248}.cip |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
9,172 |
|
driver.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
15,113 |
|
previous.driver.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
15,113 |
|
skci.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
287,920 |
|
advapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
192,816 |
|
comctl32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
69,120 |
|
comdlg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
49,152 |
|
cryptui.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
39,424 |
|
dwmapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
69,912 |
|
dxcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,208 |
|
fontsub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,208 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
176,728 |
|
imm32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
65,272 |
|
kernel32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
309,536 |
|
ole32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
178,848 |
|
oleacc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
44,544 |
|
pdh.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
52,736 |
|
PerceptionDevice.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
39,936 |
|
psapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
44,648 |
|
rstrtmgr.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
39,936 |
|
setupapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
123,120 |
|
user32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
527,472 |
|
usp10.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
48,640 |
|
secur32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
51,712 |
|
shell32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
132,888 |
|
shlwapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
163,304 |
|
version.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,208 |
|
wevtapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
74,048 |
|
winmm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
106,496 |
|
winspool.drv |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
69,120 |
|
prntvpt.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
44,544 |
|
wtsapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
59,600 |
|
xinput1_4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
39,424 |
|
kdnet.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
117,664 |
|
kdstub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
50,592 |
|
tcblaunch.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
968,536 |
|
tcbloader.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
294,304 |
|
DrtmAuthArm.wim |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
8,267 |
|
bootmgfw.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:28 |
3,030,944 |
|
bootmgfw_EX.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:28 |
3,030,840 |
|
SecureBootRecovery.efi |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
177,568 |
|
bootmgr.efi |
10.0.28000.317 |
26-2 月 26 日 |
16:28 |
3,013,024 |
|
boot.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
10,853 |
|
boot.pnd.stl |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
11,556 |
|
winsipolicy.p7b |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
10,360 |
|
winload.efi |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,477,648 |
|
bfsvc.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
110,080 |
|
bootsvc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
494,488 |
|
driversipolicy.p7b |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
238,694 |
|
ci.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,004,296 |
|
exfat.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
404,384 |
|
msimg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,720 |
|
mf3216.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
238,592 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
461,912 |
|
gdi32full.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,937,512 |
|
drupdate.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
420,256 |
|
oobeldretw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
16,800 |
|
setupugcetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
16,288 |
|
sysprepetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
20,384 |
|
windeployetw.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
16,760 |
|
esscli.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
459,168 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,052,512 |
|
mofd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
397,216 |
|
mofinstall.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
111,520 |
|
repdrvfs.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
434,592 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,058,208 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,077,640 |
|
wbemprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
57,760 |
|
wmi_tracing.mof |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
1,682 |
|
wmiutils.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
165,280 |
|
iertutil.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,509,240 |
|
msIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
550,400 |
|
edgeIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
844,288 |
|
dxgkrnl.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
5,072,288 |
|
cdd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
286,208 |
|
dxgmms1.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
459,680 |
|
dxgmms2.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,164,192 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
116,224 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
5,120 |
|
cdd.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,072 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
5,632 |
|
cdd.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,560 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
117,760 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
114,688 |
|
dxgmms2.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
4,608 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
118,272 |
|
dxgkrnl.sys.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
113,664 |
|
Narrator.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,309,184 |
|
DetailedReading-Default.xml |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
3,944 |
|
Narrator.lnk |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
11:08 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
24,576 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
29,184 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
28,672 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
28,160 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
27,136 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,208 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
30,720 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
29,696 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
23,040 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
26,624 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
17,408 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
27,648 |
|
Narrator.exe.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
14,336 |
|
windows.storage.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
19,202,568 |
|
ntoskrnl.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
12,161,952 |
|
pcrpf.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
668,672 |
|
pcrpf.dll.mui |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
6,144 |
|
refs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,527,072 |
|
msrpc.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
342,472 |
|
rpcrt4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,166,904 |
|
fvevol.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
915,872 |
|
fverecoverux.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
130,560 |
|
bcd.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
150,912 |
|
bootsvc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
494,448 |
|
hwreqchk.dll |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
806,816 |
|
ServicingCommon.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,632,832 |
|
utcapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
46,496 |
|
wimgapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,613,728 |
|
wdscommonlib.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
315,336 |
|
dismapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,270,664 |
|
dismcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
871,880 |
|
dismcoreps.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
230,344 |
|
dismprov.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
296,352 |
|
deployprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,233,312 |
|
folderprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
162,760 |
|
imagingprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
470,432 |
|
logprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
178,592 |
|
osimageprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,033,120 |
|
UpdateCompression.dll |
5.0.1.1 |
26-2 月 26 日 |
16:28 |
909,216 |
|
vhdprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,115,040 |
|
wimprovider.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,296,288 |
|
unattend.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
333,216 |
|
wpx.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,553,312 |
|
locale.nls |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
862,800 |
|
nlsbres.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
94,664 |
|
fveapibase.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,314,304 |
|
fveapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,400,768 |
|
schannel.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,285,120 |
|
lsm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
975,872 |
|
lagcounterdef.ini |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
1,878 |
|
lagcounterdef.h |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
255 |
|
winsta.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
670,008 |
|
udfs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
346,112 |
|
win32u.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
381,304 |
|
win32k.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
703,904 |
|
win32kfull.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
4,020,736 |
|
win32kbase.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,183,616 |
|
win32kbase_rs.sys |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
129,536 |
|
winlogon.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
903,168 |
|
sysntfy.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
31,232 |
|
winpeshl.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
69,632 |
|
wpeutil.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
189,952 |
|
wpeutil.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
15,872 |
|
wpeinit.exe |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
39,424 |
|
startnet.cmd |
バージョン管理されていません |
26-2 月 26 日 |
16:28 |
9 |
|
winsqlite3.dll |
3.51.1.0 |
26-2 月 26 日 |
16:28 |
2,147,584 |
|
wintrust.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
881,800 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,188,800 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,079,296 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,270,656 |
|
wbemess.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
546,304 |
|
GdiPlus.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,284,992 |
|
advapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
80,704 |
|
comctl32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
18,432 |
|
comdlg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
11,776 |
|
cryptui.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
10,240 |
|
dwmapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
24,392 |
|
dxcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,168 |
|
fontsub.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,168 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
50,168 |
|
imm32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
23,840 |
|
kernel32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
133,360 |
|
ole32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
59,024 |
|
oleacc.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
10,752 |
|
pdh.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
11,776 |
|
PerceptionDevice.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
9,728 |
|
psapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
19,752 |
|
rstrtmgr.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
9,728 |
|
setupapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
49,184 |
|
user32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
145,208 |
|
usp10.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
10,752 |
|
secur32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
15,360 |
|
shell32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
45,528 |
|
shlwapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
56,896 |
|
version.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
8,192 |
|
wevtapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
25,456 |
|
winmm.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
29,184 |
|
winspool.drv |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
16,896 |
|
prntvpt.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
10,240 |
|
wtsapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
22,856 |
|
xinput1_4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
1,628 |
10,240 |
|
advapi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
829,408 |
|
d3d9.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,314,704 |
|
d3d10_1.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
265,728 |
|
d3d10_1core.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
58,880 |
|
dsound.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,020,416 |
|
gdi32full.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,341,600 |
|
kernel32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,191,496 |
|
d2d1.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,023,064 |
|
d3d9on12.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
913,920 |
|
d3d10warp.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,362,656 |
|
d3d11.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,243,344 |
|
d3d11on12.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
814,280 |
|
d3d12.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
174,952 |
|
DWrite.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,957,824 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
325,856 |
|
iertutil.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,744,544 |
|
jscript9.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
6,456,832 |
|
msftedit.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
4,264,448 |
|
mshtml.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
28,077,056 |
|
msIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
381,440 |
|
opengl32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,304,064 |
|
urlmon.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,315,264 |
|
windows.storage.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
12,385,608 |
|
WindowsCodecs.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,857,680 |
|
wininet.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
3,098,320 |
|
rpcrt4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,267,264 |
|
dui70.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,395,136 |
|
GdiPlus.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,336,256 |
|
riched20.dll |
5.31.23.1231 |
26-2 月 26 日 |
16:28 |
794,112 |
|
msimg32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,168 |
|
mf3216.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
87,552 |
|
gdi32.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
161,224 |
|
gdi32full.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
954,568 |
|
iertutil.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
2,352,752 |
|
msIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
205,824 |
|
edgeIso.dll |
11.0.28000.1701 |
26-2 月 26 日 |
16:28 |
375,808 |
|
windows.storage.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
7,235,192 |
|
pcrpf.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
242,176 |
|
rpcrt4.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
891,016 |
|
fveapibase.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
631,808 |
|
fveapi.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,142,272 |
|
schannel.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
553,472 |
|
winsta.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
296,552 |
|
win32u.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
106,432 |
|
winsqlite3.dll |
3.51.1.0 |
26-2 月 26 日 |
16:28 |
894,256 |
|
wintrust.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
392,104 |
|
fastprox.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
819,712 |
|
wbemcomn.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
403,456 |
|
wbemcore.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,666,048 |
|
GdiPlus.dll |
10.0.28000.1701 |
26-2 月 26 日 |
16:28 |
1,541,632 |
参考資料
Microsoft のソフトウェア更新プログラムの説明で使用される標準的な用語の解説
クエリワード: safeos du