Configure Password for Admin User in Silent Mode using XML
- Last UpdatedAug 01, 2024
- 1 minute read
After upgrading, to create a repository of the repository-list provider type using the silent installer, you must manually add the following code to the WWSKBPMConfig.xml file to configure the password for the administrator (username: admin). Manually adding this code ensures that existing configuration settings are not overwritten or lost.
<RepositoryListAdminPassword IsPasswordEncrypted="false"></RepositoryListAdminPassword>

Also, the user needs to make changes in the WWSKBPMConfig.xsd file as given below:
<xs:element name="RepositoryListAdminPassword">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="IsPasswordEncrypted" type="xs:boolean" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
