ElvUI¶
A PowerShell module for installing and updating the ElvUI addon for World of Warcraft.
Prerequisites¶
- Windows PowerShell 5.1 or PowerShell 7+
- A World of Warcraft installation
- The PSModule framework for building, testing and publishing the module.
Installation¶
To install the module from the PowerShell Gallery:
# PowerShell 7.4+ (Install-PSResource is built-in)
Install-PSResource -Name ElvUI
Import-Module -Name ElvUI
# Windows PowerShell 5.1 (use Install-Module instead)
Install-Module -Name ElvUI -Scope CurrentUser
Import-Module -Name ElvUI
Usage¶
Update ElvUI to the latest version¶
Update-ElvUI
Force reinstall even if already up to date¶
Update-ElvUI -Force
Install ElvUI fresh¶
Install-ElvUI
Target a different WoW installation or flavor¶
Update-ElvUI -WoWPath 'D:\Games\World of Warcraft' -Flavor '_classic_'
Find more examples¶
To find more examples of how to use the module, please refer to the examples folder.
You can also use Get-Command -Module ElvUI to list available commands,
and Get-Help -Examples <CommandName> to see usage examples for each.
Contributing¶
Coder or not, you can contribute to the project! We welcome all contributions.
For Users¶
If you don't code, you still sit on valuable information that can make this project even better. If you experience that the product does unexpected things, throw errors or is missing functionality, you can help by submitting bugs and feature requests. Please see the issues tab on this project and submit a new issue that matches your needs.
For Developers¶
If you do code, we'd love to have your contributions. Please read the Contribution guidelines for more information. You can either help by picking up an existing issue or submit a new one if you have an idea for a new feature or improvement.