Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
remontka.com
Get-Item C:\Windows\System32\taskmgr.exe | Select-Object FullName,Length,LastWriteTime
Get-FileHash C:\Windows\System32\taskmgr.exe -Algorithm SHA256
sigcheck -a -h -i C:\Windows\System32\taskmgr.exe
driverquery /v /fo csv > C:\driverquery.csv
sigverif
verifier /query
verifier /querysettings
wevtutil qe Microsoft-Windows-CodeIntegrity/Operational /f:text /c:50
wevtutil gl Microsoft-Windows-CodeIntegrity/Operational
wevtutil sl Microsoft-Windows-CodeIntegrity/Operational /e:true
findstr /i /c:"!!!" /c:"signature" /c:"not signed" C:\Windows\inf\setupapi.dev.log
Get-Service CryptSvc
sc.exe query CryptSvc
sc.exe qc CryptSvc
(Get-ChildItem C:\Windows\System32\CatRoot -Recurse -Filter *.cat).Count
(Get-ChildItem C:\Windows\System32\CatRoot2 -Recurse -Filter *.cat).Count
Get-ChildItem C:\Windows\System32\CatRoot -Recurse -Filter *.cat |
Measure-Object Length -Sum
Get-ChildItem C:\Windows\System32\CatRoot2 -Recurse -Filter *.cat |
Measure-Object Length -Sum
Get-ChildItem C:\Windows\System32\CatRoot -Recurse -Filter *Hyper-V-Common-Drivers*.cat |
Select-Object FullName
$cat = Get-ChildItem C:\Windows\System32\CatRoot -Recurse -Filter *Hyper-V-Common-Drivers*.cat | Select-Object -First 1
Get-AuthenticodeSignature $cat.FullName