{"id":19954028,"url":"https://github.com/mkht/dscr_appxpackage","last_synced_at":"2026-02-05T23:32:10.119Z","repository":{"id":57665998,"uuid":"106041652","full_name":"mkht/DSCR_AppxPackage","owner":"mkht","description":"PowerShell DSC Resource to manage UWP App Packages","archived":false,"fork":false,"pushed_at":"2023-10-27T05:57:35.000Z","size":14,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-29T04:03:53.192Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/mkht.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,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-10-06T19:16:39.000Z","updated_at":"2023-10-27T05:49:20.000Z","dependencies_parsed_at":"2024-02-04T20:42:27.966Z","dependency_job_id":"29f6df07-5374-4fbb-b4c6-b7303d28ff61","html_url":"https://github.com/mkht/DSCR_AppxPackage","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"c9424fb30208969089951486f6b62eca7d8fe0c6"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mkht/DSCR_AppxPackage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkht%2FDSCR_AppxPackage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkht%2FDSCR_AppxPackage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkht%2FDSCR_AppxPackage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkht%2FDSCR_AppxPackage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mkht","download_url":"https://codeload.github.com/mkht/DSCR_AppxPackage/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkht%2FDSCR_AppxPackage/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265589613,"owners_count":23793575,"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-13T01:18:38.087Z","updated_at":"2026-02-05T23:32:10.082Z","avatar_url":"https://github.com/mkht.png","language":"PowerShell","readme":"DSCR_AppxPackage\n====\n\nPowerShell DSC Resource to manage UWP App Packages\n\n## Install\nYou can install Resource through [PowerShell Gallery](https://www.powershellgallery.com/packages/DSCR_AppxPackage/).\n```PowerShell\nInstall-Module -Name DSCR_AppxPackage\n```\n----\n## DSC Resources\n* **cAppxPackage**\nFor add / remove UWP Apps package to a user account.\nThis is a wrapper resource of `Add-AppxPackage` and `Remove-AppxPackage` cmdlets.\n\n* **cAppxPackageSet**\nFor remove multiple UWP Apps package to a user account at once.\n\n* **cAppxProvisionedPackage**\nFor add / remove UWP Apps package to a computer.\n( Provisioned apps will install for each new user to logon Windows. )\nThis is a wrapper resource of `Add-AppxProvisionedPackage` and `Remove-AppxProvisionedPackage` cmdlets.\n\n* **cAppxProvisionedPackageSet**\nFor remove multiple UWP Apps package to a computer at once.\n\n## Properties\n### cAppxPackage\n+ [string] **Ensure** (Write):\n    + Specifies whether or not the App should be installed or not.\n    + The default value is `Present` { `Present` | `Absent` }\n\n+ [string] **Name** (Key):\n    + Specifies the Name of the App.\n    + The param is used to determine the App is installed or not.\n    + The Name is searched forward match.\n\n+ [string] **PackagePath** (Write):\n    + Specifies the file path of the app package. An app package has an `.appx` or `.appxbundle` extension.\n\n+ [string[]] **DependencyPath** (Write):\n    + Specifies an array of file paths of dependency packages that are required for the installation of the app package.\n\n+ [Boolean] **Register** (Write):\n    + Indicates that this resource registers an existing app package installation that has been disabled, did not register, or has become corrupted.\n    + The default value is `$false`\n\n+ [PSCredential] **PsDscRunAsCredential** (Required):\n    + The credential for a user that will add /remove the App.\n\n### cAppxPackageSet\n+ [string] **Ensure** (Write):\n    + You should specify `Absent`\n\n+ [string[]] **Name** (Key):\n    + Specifies Names of Apps.\n    + The param is used to determine Apps are installed or not.\n\n### cAppxProvisionedPackage\n+ [string] **Ensure** (Write):\n    + Specifies whether or not the App should be installed or not.\n    + The default value is `Present` { `Present` | `Absent` }\n\n+ [string] **PackageName** (Key):\n    + Specifies the Name of the App.\n    + The param is used to determine the App is installed or not.\n    + The Name is searched forward match.\n\n+ [string] **PackagePath** (Write):\n    + Specifies the file path of the app package. An app package has an `.appx` or `.appxbundle` extension.\n\n+ [string[]] **DependencyPackagePath** (Write):\n    + Specifies an array of file paths of dependency packages that are required for the installation of the app package.\n\n+ [string] **LicensePath** (Write):\n    + Specifies the location of the `.xml` file containing your application license.\n\n+ [bool] **AllUsers** (Write):\n    + Execute the command to all users. This property only affects when the Ensure is `Absent`. The default value is `$false`.\n\n### cAppxProvisionedPackageSet\n+ [string] **Ensure** (Write):\n    + You should specify `Absent`\n\n+ [string[]] **PackageName** (Key):\n    + Specifies Names of Apps.\n    + The param is used to determine Apps are installed or not.\n\n+ [bool] **AllUsers** (Write):\n    + Execute the command to all users. The default value is `$false`.\n\n----\n## Examples\nPlease look in the [Sample](https://github.com/mkht/DSCR_AppxPackage/tree/master/Sample) directory.\n\n----\n## ChangeLog\n### 0.4.0\n+ Add `AllUsers` property to `cAppxProvisionedPackage` and `cAppxProvisionedPackageSet`.\n\n### 0.3.0\n+ Add `cAppxPackageSet` resource.\n+ Add `cAppxProvisionedPackageSet` resource.\n\n### 0.2.1\n+ Initial public release.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkht%2Fdscr_appxpackage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkht%2Fdscr_appxpackage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkht%2Fdscr_appxpackage/lists"}