aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Keep Group symbol fields and attributes unnestedRob Mensching2025-02-114-74/+74
|
* Fix ups for Domain Group creation / removal.Bevan Weiss2025-02-115-8/+39
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Re-align enumeration values to those for User account modifications.Bevan Weiss2025-02-113-78/+78
| | | | | | Since there's no reason to not have them identical where practical. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Group creation and update PR nits and feedback fixesRob Mensching2025-02-113-21/+20
|
* Add/Remove Group Membership rollback handled.Bevan Weiss2025-02-113-78/+211
| | | | | | Fixups to a few test cases. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Split into domain vs local CAsBevan Weiss2025-02-114-9/+64
|
* Additional languages addedBevan Weiss2025-02-113-0/+12
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Group Add/Remove working.Bevan Weiss2025-02-1114-265/+692
| | | | | | | | | | Local group membership Add/Remove working, however with BUILTIN local system groups .NET doesn't appear to locate them as either groups nor basic security Principals. Still needs work to fix the test for nested groups. Ideally with some way to test for domain groups. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* CreateGroups additionsBevan Weiss2025-02-1132-136/+1965
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Additional (automated) translations for Lithuanian, Russian and ChineseBevan Weiss2024-09-283-0/+3
| | | | | | (Simplified). Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Error message for 'logon as service' is not currently localised.Bevan Weiss2024-09-289-1/+15
| | | | | | | | Added translations in line with existing translations. I'm sure they'll suffice for now, Google translate makes sense of them anyway. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Fix up small inaccuracy in logged error message.Bevan Weiss2024-09-021-1/+13
| | | | | | | | | | | | When ::GetFileAttributesW returns 0xFFFFFFFF it means 'Invalid File/Folder' So we should return a matching error message. To avoid confusing invalid paths with junctions (in error message) Unfortunately the constant for this is not defined. So just define it here as though it would be. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* A basic install / uninstall test for RemoveFoldersExBevan Weiss2024-09-021-1/+1
| | | | | | | | Contains no files etc to verify that Remove action can still occur without other elements bringing in the RemoveFiles Standard Action Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Initialize WOW64 in TouchFile custom actionRob Mensching2024-07-171-0/+38
| | | | Fixes 8638
* Fix faulty memory access in Util's User custom actionsRob Mensching2024-07-155-120/+95
| | | | | | | | Generally, clean up the handling of getting the domain from a server name by centralizing and simplifying it behind an improved GetDomainFromServerName() based on the buggy GetServerName(). Fixes 8576
* Added missing localization files from wix3Rami2024-07-041-0/+32
|
* Added missing localization files from wix3Rami2024-07-042-0/+64
|
* Don't follow junctions when recursing directories.Rob Mensching2024-03-221-2/+10
| | | | | | | | | | | | | | When deleting directories recursively, an elevated custom action following junctions in a user-writable location could recurse into any directory, including some that you might not want to be deleted. Therefore, avoid recursing into directories that are actually junctions (aka "reparse points"). This applies to: - The RemoveFoldersEx custom action (which doesn't actually do deletions but would instruct elevated MSI to delete on your behalf). - DTF's custom action runner.
* Rename "bundle extension" to "bootstrapper extension" for more consistencyRob Mensching2024-03-0719-146/+146
| | | | Also renames WixToolet.BextUtil nupkg to WixToolset.BootstrapperExtensionApi.
* Better .nupkg namesRob Mensching2024-03-071-5/+0
|
* Move the BootstrapperApplication out of procRob Mensching2024-03-064-8/+4
|
* Switch to `virtual` access modifiers...Bob Arnson2024-02-161-40/+40
| | | | | | ...from `Overridable="yes"`. Fixes https://github.com/wixtoolset/issues/issues/7981 for WiX v5.
* Improve error when virtual action symbols collide.Bob Arnson2024-02-051-5/+9
|
* Clean up TouchFile.Bob Arnson2024-01-192-6/+6
|
* Remove warning for `Wix` bundle variable prefix.Bob Arnson2024-01-012-66/+0
| | | | | | It's a bit overzealous. Fixes https://github.com/wixtoolset/issues/issues/7579.
* Link localizations from WixExtensions the same as sectionsRob Mensching2023-12-162-3/+1
|
* Pretty up build outputRob Mensching2023-12-161-2/+2
|
* add firewall extension decompiler, make msi modifications work, add all ↵chris_bednarski2023-11-191-3/+10
| | | | attributes
* Random typo fix.Bob Arnson2023-10-131-6/+6
|
* Remove legacy permissions support.Bob Arnson2023-08-072-49/+4
| | | | | | | | | | In the long ago, a share could have one user/permissions pair. That's really limited, of course, so support for _n_ user/permissions pairs was added. In the move to WiX v4, support for that single, legacy user was removed from the extension side but not the custom action side. Remove that support. Fixes https://github.com/wixtoolset/issues/issues/7632.
* Add more _NODOMAIN properties to WixQueryOsWellKnownSIDMichael Stoll2023-06-161-0/+6
|
* Fix XmlConfig decompile to produce schema element, Add unitest for XmlDecomilefyodorkor2023-05-022-9/+34
|
* Fix XmlConfig lookup logic.Bob Arnson2023-04-274-16/+36
| | | | | Fixes https://github.com/wixtoolset/issues/issues/7377. Requires fix for https://github.com/wixtoolset/issues/issues/7444.
* Warn on mismatched output times and validate only Windows Installer databasesRob Mensching2023-03-091-1/+1
| | | | Fixes 7250
* Update some extensions to take advantage of multitargeting project referencesRob Mensching2023-02-214-15/+6
|
* Fix RemoveFoldersEx query.Bob Arnson2023-02-217-8/+63
| | | | Fixes https://github.com/wixtoolset/issues/issues/7236.
* Minor cleanup of the obsoleted.Bob Arnson2023-02-091-6/+0
|
* Add keyColumn definition to _User of Wix4FileSharePermissionsfyodorkor2023-02-041-1/+1
|
* Fix CustomActionData names.Bob Arnson2023-02-014-15/+2
| | | | | | | | | Fixes https://github.com/wixtoolset/issues/issues/7189. Also: - Clean up duplicate caDecor.h. - Clean up use of CUSTOM_ACTION_DECORATION.
* Make sizes for XMLConfig and ElementID columns the same s72Fyodor Koryazhkin2023-02-011-1/+1
|
* As promised, remove CAQuietExec*.Bob Arnson2023-01-312-51/+0
|
* Fix wrong DllEntry for WixRegisterRestartResourcesNir Bar2023-01-301-1/+1
|
* Remove extension data after extensions get PreDecompileTables callbackRob Mensching2023-01-164-15/+102
| | | | | | | | | Also update Util.wixext decompiler extension to handle the new elements that compile into CustomActions with no additional table data. These exposed the weakness in the decompiler where extension data was removed before extensions got a chance to pre-decompile. Fixes 7151
* Expose QueryNativeMachine.Bob Arnson2023-01-141-0/+1
| | | | Fixes https://github.com/wixtoolset/issues/issues/7158.
* Fix compiler to handle util:ServiceConfig absent reset period and start delayRob Mensching2023-01-123-2/+46
| | | | Fixes 7150
* Fix RegistrySymbol creation helper for non-string typesRob Mensching2022-12-221-15/+15
| | | | Fixes 7108
* Fix when xmlns placed directly on PermissionExRob Mensching2022-11-152-18/+27
| | | | | | | | This is NOT recommended in v4 and its converter will move namespaces to the root element, but WiX v3 allowed it so we'll continued to do so in v4. Fixes 7010
* Minimize calls into GitInfo by caching results during build_initRob Mensching2022-11-133-3/+0
|
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-082-3/+3
|
* Very minor cleanupRob Mensching2022-11-081-6/+9
|