Страница:
Chrome
Страницы
Adobe
Backup and Revert
Chrome
CompositeResources
DisaStigChanges
DoD Root Certificate Rules
Documentation via STIG Checklists
DotnetFramework
DscGettingStarted
Edge
Firefox
GettingRuleHelp
GettingStarted
Home
IisServer
IisSite
InternetExplorer
McAfee
Office
OracleJRE
Overview
PowerSTIG & Desired State Configuration for Linux
PowerSTIG with Azure Automation
PowerSTIGArchiveLog
RHEL
STIGMap
SqlServer
StigCaveats
Ubuntu
Vsphere
WindowsClient
WindowsDefender
WindowsDnsServer
WindowsFirewall
WindowsServer
3
Chrome
Eric Jenkins редактировал(а) эту страницу 2023-09-15 12:00:58 -04:00
Содержание
Chrome
A composite DSC resource to manage the Chrome STIG settings
Requirements
Google Chrome installation
Parameters
TODO
Examples
Example 1
In this example, the Chrome STIG is processed by the composite resource
Configuration Example
{
param
(
[parameter()]
[string]
$NodeName = 'localhost'
)
Import-DscResource -ModuleName PowerStig
Node $NodeName
{
Chrome ChromeSettings
{
}
}
}
Example