Mastering Inventory Tracking: Understanding Your IProductCode
Mastering Inventory Tracking: Understanding Your IProductCode
Table of Contents
- Introduction
- Registration
- Using Advanced Installer
- GUI
- Working with Projects
- Installer Project
- Patch Project
- Merge Module Project
- Updates Configuration Project
- Windows Store App Project
- Modification Package Project
- Optional Package Project
- Windows Mobile CAB Projects
- Visual Studio Extension Project
- Software Installer Wizards - Advanced Installer
- Visual Studio integration
- Alternative to AdminStudio/Wise
- Replace Wise
- Migrating from Visual Studio Installer
- Keyboard Shortcuts
- Shell Integration
- Command Line
- Advanced Installer PowerShell Automation Interfaces
* IAdvancedInstaller
* IAdvinstProject
* IProductDetails
* IFolder
* ILaunchConditionsComponent
* IFilesComponent
* IIniFilesComponent
* IShortcut
* ITempFile
* IXmlFile
* IDirectoryMember
* IRegistryComponent
* IInstallParameters
* IBuildComponent
* ITextFileUpdatesComponent
* ITextUpdateFile
* ITextUpdateAppendOrCreate
* ITextUpdateReplace
* IFileAssociations
* IDefaultProgramFA
* IExtensionFA
* IProgIdFA
* IVerbFA
* IEnvironment
* IEnvironmentVariable
* IProductCode
* IUpgradeCode
* IMergeModulesComponent
* IMergeModule
* IDigitalSignature
* ICustomActionsComponent
* ITranslationsComponent
* IDriversComponent
* ISearch
* IServices
* IOrganizationComponent
* IComComponent
* IRemoveFilesComponent
* IRemoveFile
* IUpdatesProject
* IUpdaterComponent
* IPatchProject
* IPropertyComponent
* IProperty
* IPathVariable
* IMsixComponent
* IMsixDependencies
* IMsixDriverDependency
* IMsixDriverConstraint
* IMsixExternalDependency
* IMsixPackageDependency
- Features and Functionality
- Tutorials
- Samples
- How-tos
- FAQs
- Windows Installer
- Deployment Technologies
- IT Pro
- MSIX
- Video Tutorials
- Advanced Installer Blog
- Table of Contents
Disclaimer: This post includes affiliate links
If you click on a link and make a purchase, I may receive a commission at no extra cost to you.
IProductCode
This interface is meant to edit the “Product Code” for specific languages present in the project.
Declaration
IProductCode: IDispatch
Methods
GetProductCode(Int LangId) returns ProductCode
Returns product code (ex: {6B6C73EB-EC6B-4CA1-872C-2075A622E0EF}) for a specified language id as detailed in theMicrosoft documentation .
UpdateProductCode(String ProductCode, Int LangId)
Updates the product code for the specified language id with the value provided by the second parameter.
GenerateProductCode(Int LangId) returns ProductCode
Updates the product code for the specified language id with a generated value for product code and returns the new value.
SetDifferentValues()
Sets different values for product codes if there are multiple languages in the project.
SetSameValue()
If there are multiple languages in the project, they will share the same value as product code.
GenerateAll()
Generates a new product code for all languages in the project.
PrintProductCodes() returns ProductCodes
Returns a string with all the product codes and the corresponding languages.
Examples
$advinst = new-object -comObject “AdvancedInstaller”
$proj = $advinst.CreateProject($advinst.ProjectTypes.Architect)
generate new product code
$proj.ProductDetails.ProductCode.GenerateAll()
$new_prodCode = $proj.ProductDetails.ProductCode.GetProductCode()
generate upgrade code
$upgradeCode = $proj.ProductDetails.UpgradeCode.UpgradeCode
$new_upgradeCode = $proj.ProductDetails.UpgradeCode.GenerateUpgradeCode()
load a project with multiple languages
$projPath = “C:\Tests\Powershell COM\multi-language.aip”
generate different product codes for each language
$projPath.ProductDetails.ProductCode.SetDifferentValues()
get product code per language package
$pc_en = $projPath.ProductDetails.ProductCode.GetProductCode(1033)
$pc_fr = $projPath.ProductDetails.ProductCode.GetProductCode(1036)
$pc_tr = $projPath.ProductDetails.ProductCode.GetProductCode(1055)
$pc_de = $projPath.ProductDetails.ProductCode.GetProductCode(1031)
Copy
See also
Did you find this page useful?
Please give it a rating:
Thanks!
Report a problem on this page
Information is incorrect or missing
Information is unclear or confusing
Something else
Can you tell us what’s wrong?
Send message
Also read:
- [New] Gimbal Mastery 7 Drone Pros Recommended
- [New] In 2024, Craft a Masterpiece Techniques for Engaging, Viral TikTok Unpacks
- [Updated] In 2024, A Comprehensive Guide to Making GIFs From YouTube Tracks
- 2024 Approved Testimonial Videos The Social Proof Powerhouse
- A Detailed Guide on Faking Your Location in Mozilla Firefox On OnePlus Ace 2 | Dr.fone
- Comprehensive Resource Collection Hub
- Get the Newest Software for Your Canon PIXMA MG2520/MG2530 Printers
- In 2024, Redesigning the Perception of Sony S3700 Review
- Innovative Techniques and Applications for Observing Computer Behavior
- Mastering Android Connectivity: Discover the Best 3 Techniques for Controlling One Android with Another
- Navigate Through Picture Gallery - Discover Image Features
- Navigating Advanced Search Settings: A Guide to Effective Result Filtering
- QuickCapture 5000 Chrome OS Recording Pro
- Simple Methods for Sharing Your Android Display on Windows and Mac
- The Top Competitors of Listento on YouTube: A Comprehensive Guide
- Title: Mastering Inventory Tracking: Understanding Your IProductCode
- Author: Kenneth
- Created at : 2024-10-03 18:18:58
- Updated at : 2024-10-10 17:41:38
- Link: https://fox-sys.techidaily.com/mastering-inventory-tracking-understanding-your-iproductcode/
- License: This work is licensed under CC BY-NC-SA 4.0.