please fix the "User password never expire" option. user have administrator privilege.
taskbar setting option also never work.
taskbar setting option also never work.
winterstorm2050 wrote:Hello,
Could you please describe more precisely your trouble, thank you very much for your understanding
NET ACCOUNTS /maxpwage:unlimited
KrX wrote:hi, the command i mentioned above is put into the unattanded.xml by winreducer if you switch "Turn Off Password Expiration" to ON at the unattanded tab
Code:
<RunSynchronousCommand wcm:action="add">
<Order>9</Order>
<Description>TurnOffPasswordExpiration</Description>
<Path>CMD /C NET ACCOUNTS /maxpwage:unlimited</Path>
</RunSynchronousCommand>
Code:
<RunSynchronousCommand wcm:action="add">
<Order>9</Order>
<Description>TurnOffPasswordExpiration</Description>
<Path>CMD /C NET ACCOUNTS /maxpwage:unlimited</Path>
</RunSynchronousCommand>
Code:
net accounts
Code:
wmic path Win32_UserAccount set PasswordExpires=False
Code:
wmic UserAccount where Name='username' set PasswordExpires=False
Mohsan123 wrote:where i put this command in autounattand.xml
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>TurnOffPasswordExpiration</Description>
<Path>CMD /C wmic path Win32_UserAccount set PasswordExpires=False</Path>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
</unattend>