编写PowerShell脚本执行自动登录( 二 )


授予脚本执行权限:
sudo chmod +x auto_login_web.sh
在/etc///目录中创建一个启动服务配置文件,并使用文本编辑器打开它:
sudo vim /etc/systemd/system/auto_login_web.service
在打开的文件中,添加以下内容:
[Unit]Description=Network Auto Login Service[Service]ExecStart=/home/xxx/auto_login_web/auto_login_web.sh[Install]WantedBy=multi-user.target
运行以下命令,以使系统识别新的服务文件并启用它:
sudo systemctl daemon-reloadsudo systemctl enable network_check.service
重启系统或执行以下命令,即可启动该服务
【编写PowerShell脚本执行自动登录】sudo systemctl start auto_login_web.servicesudo systemctl status auto_login_web.service