bulk update out of office auto reply

$User = Import-Csv C:\temp\ooto.csv

foreach($user in $user) {Set-MailboxAutoreplyConfiguration -Identity $User.User -AutoReplyState Enabled -Internalmessage $User.InternalMessage}

ooto.csv format

User,InternalMessage

more about PS