How to remove: Notice: You’re using the auto-generated password for your account. Would you like to change it? [closed]

Similar to @robert0’s answer, you can unhook the nag from happening:

remove_action( 'profile_update', 'default_password_nag_edit_user', 10 );

Just put that in your theme’s functions.php and that should take care of it.