├── LICENSE ├── MSIX_Commander.ps1 ├── README.md └── ReleaseNotes.txt /LICENSE: -------------------------------------------------------------------------------- 1 | Microsoft Public License (Ms-PL) 2 | 3 | 4 | 5 | This license governs use of the accompanying software. If you use the 6 | 7 | software, you accept this license. If you do not accept the license, 8 | 9 | do not use the software. 10 | 11 | 12 | 13 | 1. Definitions 14 | 15 | 16 | 17 | The terms "reproduce," "reproduction," "derivative works," and 18 | 19 | "distribution" have the same meaning here as under U.S. copyright 20 | 21 | law. 22 | 23 | 24 | 25 | A "contribution" is the original software, or any additions or 26 | 27 | changes to the software. 28 | 29 | 30 | 31 | A "contributor" is any person that distributes its contribution 32 | 33 | under this license. 34 | 35 | 36 | 37 | "Licensed patents" are a contributor's patent claims that read 38 | 39 | directly on its contribution. 40 | 41 | 42 | 43 | 2. Grant of Rights 44 | 45 | 46 | 47 | (A) Copyright Grant- Subject to the terms of this license, 48 | 49 | including the license conditions and limitations in section 3, 50 | 51 | each contributor grants you a non-exclusive, worldwide, 52 | 53 | royalty-free copyright license to reproduce its contribution, 54 | 55 | prepare derivative works of its contribution, and distribute its 56 | 57 | contribution or any derivative works that you create. 58 | 59 | 60 | 61 | (B) Patent Grant- Subject to the terms of this license, including 62 | 63 | the license conditions and limitations in section 3, each 64 | 65 | contributor grants you a non-exclusive, worldwide, royalty-free 66 | 67 | license under its licensed patents to make, have made, use, sell, 68 | 69 | offer for sale, import, and/or otherwise dispose of its 70 | 71 | contribution in the software or derivative works of the 72 | 73 | contribution in the software. 74 | 75 | 76 | 77 | 3. Conditions and Limitations 78 | 79 | 80 | 81 | (A) No Trademark License- This license does not grant you rights 82 | 83 | to use any contributors' name, logo, or trademarks. 84 | 85 | 86 | 87 | (B) If you bring a patent claim against any contributor over 88 | 89 | patents that you claim are infringed by the software, your patent 90 | 91 | license from such contributor to the software ends automatically. 92 | 93 | 94 | 95 | (C) If you distribute any portion of the software, you must retain 96 | 97 | all copyright, patent, trademark, and attribution notices that are 98 | 99 | present in the software. 100 | 101 | 102 | 103 | (D) If you distribute any portion of the software in source code 104 | 105 | form, you may do so only under this license by including a 106 | 107 | complete copy of this license with your distribution. If you 108 | 109 | distribute any portion of the software in compiled or object code 110 | 111 | form, you may only do so under a license that complies with this 112 | 113 | license. 114 | 115 | 116 | 117 | (E) The software is licensed "as-is." You bear the risk of using 118 | 119 | it. The contributors give no express warranties, guarantees, or 120 | 121 | conditions. You may have additional consumer rights under your 122 | 123 | local laws which this license cannot change. To the extent 124 | 125 | permitted under your local laws, the contributors exclude the 126 | 127 | implied warranties of merchantability, fitness for a particular 128 | 129 | purpose and non-infringement. 130 | -------------------------------------------------------------------------------- /MSIX_Commander.ps1: -------------------------------------------------------------------------------- 1 | $ScriptVersion = "1.0.7.5" 2 | # Add required assemblies for icon 3 | Add-Type -AssemblyName PresentationFramework, System.Drawing, System.Windows.Forms, WindowsFormsIntegration 4 | 5 | #region GUI 6 | #ERASE ALL THIS AND PUT XAML BELOW between the @" "@ 7 | $inputXML = @" 8 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |