定時修改Windows密碼

yum -y install mailx expect

cat /tools/pass/pass.sh

#!/bin/env bashwindows

datetime=date +%Y-%m-%d" "%H":"%M
for user in awk '{print $1}' /tools/pass/user_list;do
passwd=mkpasswd -d 5 -s 0 -l 20
#ansible windows -m win_command -a "net user $user $passwd"
ansible winserver -m win_command -a "net user $user $passwd"
email=grep $user /root/tools/pass/mail_list| awk '{print $2}'
echo $passwd |mail -s "$datetime new windos system $user passwd" $email
echo $passwd $user >> $(date +%Y-%m-%d"-"%H":"%M).txt bash

doneide

cat /tools/pass/user_list

user1 aa@qq.com
user2 bb@qq.com
user3 cc@qq.comcode

cat /etc/mail.rc

set bsdcompatserver

set from="ee@qq.com"
set smtp=smtp.qq.com
set smtp-auth-user=ee@qq.com
set smtp-auth-password=ypshshv3b1uadfg4crontab

crontab -l

0 2 sun [ $(date +%d) -le 07 ] && /bin/bash /tools/pass/pass.shit

相關文章
相關標籤/搜索