Disable password in WIx Installer -
i have installer project developed in wix. have below code util:xmlconfig
<util:xmlconfig id="xml.setmypassword" action="create" elementpath="/configuration/datareport/password" node="value" value="[my_password]" file="[#myservice]" on="install" preservemodifieddate="yes" sequence="1" />
now issue is, when installing package password shown "mypassword" instead of ******. how can change above code such password should not displayed.
if trying stop my_password property appearing in log should set hidden attribute yes in declaration.
<property id="my_password" hidden="yes" secure="yes" />
note util:xmlconfig custom action may still display in own internal logging.
Comments
Post a Comment