The xFirefox module contains the MSFT_xFirefox composite resource which allows you to install the Firefox web browser
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Please check out common DSC Resources contributing guidelines.
- Language: Specify the language of the browser to be installed. The default value is English.
- VersionNumber: Specify the version number of the browser to be installed. By default, the latest version is installed.
- OS: Specify the operating system on which the browser is to be installed. By default, the operating system is Windows.
- MachineBits: Specifies the machine's operating system bit number. The default is x86.
- LocalPath: The local path on the machine where the installation file should be downloaded.
- Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
- Added logic to download installer with correct machine bits
- Added dependency on xPSDesiredStateConfiguration
- Updated MFST_xFireFox to pull latest version by default and use HTTPS
- Initial release with the following resources
- MSFT_xFirefox
Configuration Sample_InstallFirefoxBrowser
{
param
(
[Parameter(Mandatory)]
$VersionNumber,
[Parameter(Mandatory)]
$Language,
[Parameter(Mandatory)]
$OS,
[Parameter(Mandatory)]
$LocalPath
)
Import-DscResource -module xFirefox
MSFT_xFirefox Firefox
{
VersionNumber = $VersionNumber
Language = $Language
OS = $OS
LocalPath = $LocalPath
}
}