This commit is contained in:
p0w3rsh3ll 2020-11-25 20:21:56 +01:00 коммит произвёл GitHub
Родитель 31f049d013
Коммит 526dc8339e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -12,11 +12,12 @@ This repository contains sample code and documentation for the Microsoft Securit
Getting started with the MsrcSecurityUpdates module can be done like this:
```PowerShell
### Install the module from the PowerShell Gallery
### !! Requires minimum PowerShell version 5.1
Install-Module -Name MsrcSecurityUpdates -Scope CurrentUser
### Load the module
Import-Module -Name MsrcSecurityUpdates
### Load the module if PowerShell is at least version 5.1
if ($PSVersionTable.PSVersion -gt [version]'5.1') {
Import-Module -Name MsrcSecurityUpdates
}
```
Once the module is loaded, check out our [PowerShell samples](https://github.com/Microsoft/MSRC-Microsoft-Security-Updates-API/blob/master/src/README.md)