├── .github ├── dependabot.yml └── workflows │ ├── CI.yml │ ├── Official.yml │ └── copilot-setup-steps.yml ├── .gitignore ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── Microsoft.Dism.sln ├── NuGet.config ├── README.md ├── dismapi.h ├── key.snk ├── src ├── GlobalSuppressions.cs ├── Microsoft.Dism.Tests │ ├── ApplyUnattendTest.cs │ ├── CheckImageHealthTest.cs │ ├── DismAppxPackageTest.cs │ ├── DismCapabilityInfoTest.cs │ ├── DismCapabilityTest.cs │ ├── DismCollectionTest.cs │ ├── DismCustomPropertyTest.cs │ ├── DismDriverPackageTest.cs │ ├── DismDriverTest.cs │ ├── DismExceptionTest.cs │ ├── DismFeatureInfoTest.cs │ ├── DismFeatureTest.cs │ ├── DismImageInfoTest.cs │ ├── DismInitializeTest.cs │ ├── DismInstallWimTestBase.cs │ ├── DismMountedImageInfoTest.cs │ ├── DismPackageInfoExTest.cs │ ├── DismPackageInfoTest.cs │ ├── DismPackageTest.cs │ ├── DismSessionTest.cs │ ├── DismStructTest.cs │ ├── DismTestBase.cs │ ├── DismWimCustomizedInfoTest.cs │ ├── ExtensionMethods.cs │ ├── GetCapabilitiesTest.cs │ ├── GetCurrentEditionTests.cs │ ├── GetDriversTest.cs │ ├── GetFeaturesTest.cs │ ├── GetImageInfoTest.cs │ ├── GetPackageInfoExTest.cs │ ├── GetPackagesTest.cs │ ├── GetProductKeyInfoTest.cs │ ├── GetProvisionedAppxPackagesTest.cs │ ├── GetRegistryMountPointTest.cs │ ├── GetTargetEditionsTest.cs │ ├── Microsoft.Dism.Tests.csproj │ ├── TestBase.cs │ ├── TestWimTemplate.cs │ ├── install.wim │ └── xunit.runner.json └── Microsoft.Dism │ ├── CallerMemberNameAttribute.cs │ ├── DismApi.AddCapability.cs │ ├── DismApi.AddDriver.cs │ ├── DismApi.AddPackage.cs │ ├── DismApi.AddProvisionedAppxPackage.cs │ ├── DismApi.ApplyFfuImage.cs │ ├── DismApi.ApplyUnattend.cs │ ├── DismApi.CheckImageHealth.cs │ ├── DismApi.CleanupMountpoints.cs │ ├── DismApi.CloseSession.cs │ ├── DismApi.CommitImage.cs │ ├── DismApi.Delete.cs │ ├── DismApi.DisableFeature.cs │ ├── DismApi.EnableFeature.cs │ ├── DismApi.GetCapabilities.cs │ ├── DismApi.GetCapabilityInfo.cs │ ├── DismApi.GetCurrentEdition.cs │ ├── DismApi.GetDriverInfo.cs │ ├── DismApi.GetDrivers.cs │ ├── DismApi.GetFeatureInfo.cs │ ├── DismApi.GetFeatureParent.cs │ ├── DismApi.GetFeatures.cs │ ├── DismApi.GetImageInfo.cs │ ├── DismApi.GetLastErrorMessage.cs │ ├── DismApi.GetMountedImages.cs │ ├── DismApi.GetPackageInfo.cs │ ├── DismApi.GetPackageInfoEx.cs │ ├── DismApi.GetPackages.cs │ ├── DismApi.GetProductKeyInfo.cs │ ├── DismApi.GetProvisionedAppxPackages.cs │ ├── DismApi.GetRegistryMountPoint.cs │ ├── DismApi.GetTargetEditions.cs │ ├── DismApi.Initialize.cs │ ├── DismApi.MountImage.cs │ ├── DismApi.NativeMethods.cs │ ├── DismApi.OpenSession.cs │ ├── DismApi.OpenSessionEx.cs │ ├── DismApi.RemountImage.cs │ ├── DismApi.RemoveCapability.cs │ ├── DismApi.RemoveDriver.cs │ ├── DismApi.RemovePackage.cs │ ├── DismApi.RemoveProvisionedAppxPackage.cs │ ├── DismApi.RestoreImageHealth.cs │ ├── DismApi.SetEdition.cs │ ├── DismApi.SetProductKey.cs │ ├── DismApi.Shutdown.cs │ ├── DismApi.SplitFfuImage.cs │ ├── DismApi.UnmountImage.cs │ ├── DismApi.ValidateProductKey.cs │ ├── DismApiEx.cs │ ├── DismAppxPackage.cs │ ├── DismAppxPackageCollection.cs │ ├── DismCapability.cs │ ├── DismCapabilityCollection.cs │ ├── DismCapabilityInfo.cs │ ├── DismCustomProperty.cs │ ├── DismCustomPropertyCollection.cs │ ├── DismDriver.cs │ ├── DismDriverCollection.cs │ ├── DismDriverPackage.cs │ ├── DismDriverPackageCollection.cs │ ├── DismEditionCollection.cs │ ├── DismException.cs │ ├── DismFeature.cs │ ├── DismFeatureCollection.cs │ ├── DismFeatureInfo.cs │ ├── DismImageInfo.cs │ ├── DismImageInfoCollection.cs │ ├── DismLanguage.cs │ ├── DismMountedImageInfo.cs │ ├── DismMountedImageInfoCollection.cs │ ├── DismPackage.cs │ ├── DismPackageCollection.cs │ ├── DismPackageInfo.cs │ ├── DismPackageInfoEx.cs │ ├── DismProductKeyInfo.cs │ ├── DismProgress.cs │ ├── DismProgressCallback.cs │ ├── DismSession.cs │ ├── DismSessionOptions.cs │ ├── DismString.cs │ ├── DismUtilities.cs │ ├── DismWimCustomizedInfo.cs │ ├── ExtensionMethods.cs │ ├── GlobalSuppressions.cs │ ├── Microsoft.Dism.csproj │ ├── NativeConstants.cs │ ├── NativeEnums.cs │ ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── SystemTime.cs │ └── TestHooks.cs ├── stylecop.json └── version.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/.github/workflows/Official.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Dism.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/Microsoft.Dism.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/README.md -------------------------------------------------------------------------------- /dismapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/dismapi.h -------------------------------------------------------------------------------- /key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/key.snk -------------------------------------------------------------------------------- /src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/ApplyUnattendTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/ApplyUnattendTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/CheckImageHealthTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/CheckImageHealthTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismAppxPackageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismAppxPackageTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismCapabilityInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismCapabilityInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismCapabilityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismCapabilityTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismCollectionTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismCustomPropertyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismCustomPropertyTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismDriverPackageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismDriverPackageTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismDriverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismDriverTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismExceptionTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismFeatureInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismFeatureInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismFeatureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismFeatureTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismImageInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismImageInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismInitializeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismInitializeTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismInstallWimTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismInstallWimTestBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismMountedImageInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismMountedImageInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismPackageInfoExTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismPackageInfoExTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismPackageInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismPackageInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismPackageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismPackageTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismSessionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismSessionTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismStructTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismStructTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismTestBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/DismWimCustomizedInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/DismWimCustomizedInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetCapabilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetCapabilitiesTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetCurrentEditionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetCurrentEditionTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetDriversTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetDriversTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetFeaturesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetFeaturesTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetImageInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetImageInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetPackageInfoExTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetPackageInfoExTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetPackagesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetPackagesTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetProductKeyInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetProductKeyInfoTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetProvisionedAppxPackagesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetProvisionedAppxPackagesTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetRegistryMountPointTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetRegistryMountPointTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/GetTargetEditionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/GetTargetEditionsTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/Microsoft.Dism.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/Microsoft.Dism.Tests.csproj -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/TestBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/TestWimTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/TestWimTemplate.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/install.wim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/install.wim -------------------------------------------------------------------------------- /src/Microsoft.Dism.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism.Tests/xunit.runner.json -------------------------------------------------------------------------------- /src/Microsoft.Dism/CallerMemberNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/CallerMemberNameAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.AddCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.AddCapability.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.AddDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.AddDriver.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.AddPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.AddPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.AddProvisionedAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.AddProvisionedAppxPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.ApplyFfuImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.ApplyFfuImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.ApplyUnattend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.ApplyUnattend.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.CheckImageHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.CheckImageHealth.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.CleanupMountpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.CleanupMountpoints.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.CloseSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.CloseSession.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.CommitImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.CommitImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.Delete.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.DisableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.DisableFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.EnableFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.EnableFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetCapabilities.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetCapabilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetCapabilityInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetCurrentEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetCurrentEdition.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetDriverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetDriverInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetDrivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetDrivers.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetFeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetFeatureInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetFeatureParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetFeatureParent.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetFeatures.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetImageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetLastErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetLastErrorMessage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetMountedImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetMountedImages.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetPackageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetPackageInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetPackageInfoEx.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetPackages.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetProductKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetProductKeyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetProvisionedAppxPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetProvisionedAppxPackages.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetRegistryMountPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetRegistryMountPoint.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.GetTargetEditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.GetTargetEditions.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.Initialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.Initialize.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.MountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.MountImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.NativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.OpenSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.OpenSession.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.OpenSessionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.OpenSessionEx.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RemountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RemountImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RemoveCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RemoveCapability.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RemoveDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RemoveDriver.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RemovePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RemovePackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RemoveProvisionedAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RemoveProvisionedAppxPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.RestoreImageHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.RestoreImageHealth.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.SetEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.SetEdition.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.SetProductKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.SetProductKey.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.Shutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.Shutdown.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.SplitFfuImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.SplitFfuImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.UnmountImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.UnmountImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApi.ValidateProductKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApi.ValidateProductKey.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismApiEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismApiEx.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismAppxPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismAppxPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismAppxPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismAppxPackageCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismCapability.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismCapabilityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismCapabilityCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismCapabilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismCapabilityInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismCustomProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismCustomProperty.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismCustomPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismCustomPropertyCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismDriver.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismDriverCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismDriverCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismDriverPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismDriverPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismDriverPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismDriverPackageCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismEditionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismEditionCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismException.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismFeature.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismFeatureCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismFeatureCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismFeatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismFeatureInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismImageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismImageInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismImageInfoCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismLanguage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismMountedImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismMountedImageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismMountedImageInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismMountedImageInfoCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismPackage.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismPackageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismPackageCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismPackageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismPackageInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismPackageInfoEx.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismProductKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismProductKeyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismProgress.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismProgressCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismProgressCallback.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismSession.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismSessionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismSessionOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismString.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/DismWimCustomizedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/DismWimCustomizedInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/Microsoft.Dism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/Microsoft.Dism.csproj -------------------------------------------------------------------------------- /src/Microsoft.Dism/NativeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/NativeConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/NativeEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/NativeEnums.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Dism/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Microsoft.Dism/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable 2 | -------------------------------------------------------------------------------- /src/Microsoft.Dism/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/SystemTime.cs -------------------------------------------------------------------------------- /src/Microsoft.Dism/TestHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/src/Microsoft.Dism/TestHooks.cs -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/stylecop.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffkl/ManagedDism/HEAD/version.json --------------------------------------------------------------------------------