{"id":20156295,"url":"https://github.com/dsccommunity/xfirefox","last_synced_at":"2025-12-11T21:22:51.986Z","repository":{"id":30468249,"uuid":"34022235","full_name":"dsccommunity/xFirefox","owner":"dsccommunity","description":null,"archived":false,"fork":false,"pushed_at":"2019-05-15T20:39:03.000Z","size":74,"stargazers_count":8,"open_issues_count":2,"forks_count":13,"subscribers_count":18,"default_branch":"dev","last_synced_at":"2024-03-15T13:47:22.661Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dsccommunity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-15T22:43:01.000Z","updated_at":"2020-08-28T01:33:37.000Z","dependencies_parsed_at":"2022-08-22T23:40:32.352Z","dependency_job_id":null,"html_url":"https://github.com/dsccommunity/xFirefox","commit_stats":null,"previous_names":["powershell/xfirefox"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxFirefox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxFirefox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxFirefox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxFirefox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsccommunity","download_url":"https://codeload.github.com/dsccommunity/xFirefox/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248120949,"owners_count":21051056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T23:38:19.305Z","updated_at":"2025-12-11T21:22:51.908Z","avatar_url":"https://github.com/dsccommunity.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build status](https://ci.appveyor.com/api/projects/status/pe6p3pghfqkvbw77/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xfirefox/branch/master)\r\n\r\n# xFirefox\r\n\r\nThe **xFirefox** module contains the **MSFT_xFirefox** composite resource which allows you to install the Firefox web browser\r\n\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\r\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\r\n\r\n## Contributing\r\nPlease check out common DSC Resources [contributing guidelines](https://github.com/PowerShell/DscResource.Kit/blob/master/CONTRIBUTING.md).\r\n\r\n\r\n## Resources\r\n\r\n### MSFT_xFirefox\r\n\r\n* **Language**: Specify the language of the browser to be installed.\r\nThe default value is English.\r\n* **VersionNumber**: Specify the version number of the browser to be installed.\r\nBy default, the latest version is installed.\r\n* **OS**: Specify the operating system on which the browser is to be installed.\r\nBy default, the operating system is Windows.\r\n* **MachineBits**: Specifies the machine's operating system bit number.\r\nThe default is x86.\r\n* **LocalPath**: The local path on the machine where the installation file should be downloaded.\r\n\r\n### MSFT_xFirefoxPreference\r\n\r\n* **PreferenceType**: Specify the type of Preference { Pref | lockPref | defaultPref | unlockPref | clearPref }\r\nSpecifies the preference type of the Firefox Preference to be configured\r\n* **PreferenceName**: Specify the name of the Preference.\r\nSpecifies the name of the Firefox Preference to be configured\r\n* **PreferenceValue**: Specify the value of the Preference.\r\nSpecifies value of the Firefox Preference to be configured\r\n* **InstallDirectory**: Specifies the location where Mozilla Firefox is installed.\r\nSpecifies the directory where Firefox is installed\r\n\r\n## Versions\r\n\r\n### Unreleased\r\n\r\n### 1.3.0.0\r\n\r\n* Update appveyor.yml to use the default template.\r\n* Added default template files .codecov.yml, .gitattributes, and .gitignore, and\r\n  .vscode folder.\r\n* The module manifest now contains the correct PowerShell version.\r\n* Added xFirefoxPreference Resource to automate Firefox Preference Configuration\r\n\r\n### 1.2.0.0\r\n\r\n* Added logic to download installer with correct machine bits\r\n* Added dependency on xPSDesiredStateConfiguration\r\n\r\n### 1.1.0.0\r\n\r\n* Updated MFST_xFireFox to pull latest version by default and use HTTPS\r\n\r\n### 1.0.0.0\r\n\r\n* Initial release with the following resources\r\n    - MSFT_xFirefox\r\n\r\n## Examples\r\n\r\n### Install the Firefox browser\r\n\r\n```powershell\r\nConfiguration Sample_InstallFirefoxBrowser\r\n{\r\n    param\r\n    (\r\n\r\n    [Parameter(Mandatory)]\r\n    $VersionNumber,\r\n\r\n    [Parameter(Mandatory)]\r\n    $Language,\r\n\r\n    [Parameter(Mandatory)]\r\n    $OS,\r\n\r\n    [Parameter(Mandatory)]\r\n    $LocalPath\r\n\r\n    )\r\n\r\n    Import-DscResource -module xFirefox\r\n\r\n    MSFT_xFirefox Firefox\r\n    {\r\n    VersionNumber = $VersionNumber\r\n    Language = $Language\r\n    OS = $OS\r\n    LocalPath = $LocalPath\r\n    }\r\n}\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsccommunity%2Fxfirefox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsccommunity%2Fxfirefox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsccommunity%2Fxfirefox/lists"}