{"id":20156259,"url":"https://github.com/dsccommunity/xinternetexplorerhomepage","last_synced_at":"2025-10-13T20:02:53.808Z","repository":{"id":30468251,"uuid":"34022237","full_name":"dsccommunity/xInternetExplorerHomePage","owner":"dsccommunity","description":null,"archived":false,"fork":false,"pushed_at":"2018-09-22T10:15:39.000Z","size":23,"stargazers_count":5,"open_issues_count":1,"forks_count":4,"subscribers_count":19,"default_branch":"dev","last_synced_at":"2025-04-09T22:27:44.765Z","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":"2024-09-01T23:10:49.000Z","dependencies_parsed_at":"2022-08-22T23:40:31.977Z","dependency_job_id":null,"html_url":"https://github.com/dsccommunity/xInternetExplorerHomePage","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dsccommunity/xInternetExplorerHomePage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxInternetExplorerHomePage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxInternetExplorerHomePage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxInternetExplorerHomePage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxInternetExplorerHomePage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsccommunity","download_url":"https://codeload.github.com/dsccommunity/xInternetExplorerHomePage/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsccommunity%2FxInternetExplorerHomePage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016827,"owners_count":26085891,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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:13.036Z","updated_at":"2025-10-13T20:02:53.779Z","avatar_url":"https://github.com/dsccommunity.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build status](https://ci.appveyor.com/api/projects/status/2f73cnimuofa6v20/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xinternetexplorerhomepage/branch/master)\r\n\r\n# xInternetExplorerHomePage\r\n\r\nThe **xInternetExplorerHomePage** modules contains the **xInternetExplorerHomePage** resource, enabling you to set one or more IE home pages.\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### xInternetExplorerHomePage\r\n\r\n* **StartPage**: Specifies the home page of Internet Explorer.\r\n* **SecondaryStartPages**: Specifies the secondary home pages of Internet Explorer.\r\n* **Ensure**: Ensures that the IE home page is Present or Absent.\r\n\r\n\r\n## Versions\r\n\r\n### Unreleased\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\r\n### 1.0.0.0\r\n\r\n* Initial release with the following resources\r\n    * xInternetExplorerHomePage\r\n\r\n\r\n## Examples\r\n\r\n### Set the Internet Explorer home page\r\n\r\n```powershell\r\nConfiguration SetIEHomePage\r\n{\r\n    Param\r\n    (\r\n        #Target nodes to apply the configuration\r\n        [String[]]$NodeName = $env:COMPUTERNAME,\r\n\r\n        #Specifies the URL for the home page of Internet Explorer.\r\n        [Parameter(Mandatory)]\r\n        [ValidateNotNullOrEmpty()]\r\n        [String]$StartPageURL,\r\n\r\n        #Specifies the URL for the secondary home pages of Internet Explorer.\r\n        [Parameter()]\r\n        [String]$SecondaryStartPagesURL,\r\n\r\n        #Set the value as 'Present'/'Absent', it indicates the IE home page is configured/unconfigured.\r\n        [Parameter(Mandatory)]\r\n        [ValidateSet('Present','Absent')]\r\n        [String]$SetEnsure\r\n    )\r\n\r\n    Import-DSCResource -ModuleName xInternetExplorerHomePage\r\n\r\n    Node \"localhost\"\r\n    {\r\n        xInternetExplorerHomePage IEHomePage\r\n        {\r\n            StartPage = $StartPageURL\r\n            SecondaryStartPages = $SecondaryStartPagesURL\r\n            Ensure = $SetEnsure\r\n        }\r\n    }\r\n}\r\n\r\nSetIEHomePage -StartPageURL \"www.bing.com\" -SetEnsure 'Present'\r\nStart-DscConfiguration -Path .\\SetIEHomePage  -Wait -Force -Verbose\r\n```\r\n\r\n### Set the Secondary start page\r\n\r\n```powershell\r\nConfiguration SetIEHomePage\r\n{\r\n    Param\r\n    (\r\n        #Target nodes to apply the configuration\r\n        [String[]]$NodeName = $env:COMPUTERNAME,\r\n\r\n        #Specifies the URL for the home page of Internet Explorer.\r\n        [Parameter(Mandatory)]\r\n        [ValidateNotNullOrEmpty()]\r\n        [String]$StartPageURL,\r\n\r\n        #Specifies the URL for the secondary home pages of Internet Explorer.\r\n        [Parameter()]\r\n        [String]$SecondaryStartPagesURL,\r\n\r\n        #Set the value as 'Present'/'Absent', it indicates the IE home page is configured/unconfigured.\r\n        [Parameter(Mandatory)]\r\n        [ValidateSet('Present','Absent')]\r\n        [String]$SetEnsure\r\n    )\r\n\r\n    Import-DSCResource -ModuleName xInternetExplorerHomePage\r\n\r\n    Node \"localhost\"\r\n    {\r\n        xInternetExplorerHomePage IEHomePage\r\n        {\r\n            StartPage = $StartPageURL\r\n            SecondaryStartPages = $SecondaryStartPagesURL\r\n            Ensure = $SetEnsure\r\n        }\r\n    }\r\n}\r\n\r\nSetIEHomePage -StartPageURL \"www.bing.com\" -SecondaryStartPagesURL \"www.google.com\" -SetEnsure 'Present'\r\nStart-DscConfiguration -Path .\\SetIEHomePage  -Wait -Force -Verbose\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsccommunity%2Fxinternetexplorerhomepage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsccommunity%2Fxinternetexplorerhomepage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsccommunity%2Fxinternetexplorerhomepage/lists"}