@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Gets the package full name for the specified package identifier (ID). !!!!C# Signature: [DllImport("kernel32.dll", CharSet = CharSet.Auto)] static extern long PackageFullNameFromId(ref PACKAGE_ID packageId, ref UInt32 packageFullNameLength, StringBuilder packageFullName); !!!!User-Defined Types: [PACKAGE_ID] !!!!Sample Code: PACKAGE_ID packageId = new PACKAGE_ID(); packageId.name = "MyPackage"; packageId.publisher = "CN=PublisherName"; StringBuilder packageFullName = new StringBuilder(255); UInt32 capacity = (UInt32)packageFullName.Capacity; long errorCode = PackageFullNameFromId(ref packageId, ref capacity, packageFullName); Documentation: https://msdn.microsoft.com/en-us/library/windows/desktop/hh446771(v=vs.85).aspx on MSDN
Edit kernel32.PackageF...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.