Check your Environment for Spectre and Meltdown
Like everybody of us heard we have Spectre and Meltdown as new threads for our customer environments.
Microsoft brought out an article where they describe the threads and vulnerabilities and some recommendations.
This is just a short documentation. If you want a more detailed documentation, see the Microsoft link.
I just want to make you aware of a PowerShllscript which checks your installed patches and what you need to patch to clean the situation in your environment.
Microsoft brought out an article where they describe the threads and vulnerabilities and some recommendations.
I just want to make you aware of a PowerShllscript which checks your installed patches and what you need to patch to clean the situation in your environment.
- Download the ZIP and extract everything to a folder.
- Go to the folder with the extracted PowerShell-Module and run following command:
$SaveExecutionPolicy = Get-ExecutionPolicy
Set-ExecutionPolicy RemoteSigned -Scope Currentuser -Force
Import-Module .\SpeculationControl.psd1
Get-SpeculationControlSettings
Set-ExecutionPolicy $SaveExecutionPolicy -Scope Currentuser -Force
That's it and you're good to go
Comments
Post a Comment