设置开机后自动运行powershell脚本攻略

1. 修改注册表

Open Registry Editor, add a startup item 
i. Locate the path“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run” 
Create a string value name Shadow 

 

ii. Right click Shadow and choose Modify… 

 

 iii. Add the path of the cmd file above. For example: C:\Users\userName\Desktop\Shadow.cmd, and OK.

 注意,这里的地址可以自己定义,也就是将来"Shadow.cmd"存放的位置

 

 

2.写批处理

Open a notepad and paste the command below (This file will invoke PowerShell script) 
下面这段代码的意思是,打开powershell,采用unrestricted形式(否则无法执行脚本),执行C:\Windows\Drives\sucks.ps1脚本。

 
@set Path=%Path%;%SystemRoot%\system32\WindowsPowerShell\v1.0\& powershell -ExecutionPolicy Unrestricted "C:\Windows\Drives\sucks.ps1"
exit

 

3.写powershell脚本

打开一个txt文件,写入powershell脚本,并保存为.ps1格式文件,存放在步骤2中提到的路径(本文中为C:\Windows\Drives\)

 

#requires -Version 1
  write-host "running....please wait 1 min"
  Start-Sleep -s (60)
  Start-Process -FilePath "C:\Users\neousys\Desktop\微光本地端-内测版"

 

上面这段脚本的意思是

1.在屏幕上显示"running....please wait 1 min"

2.等待60s

3.运行xxx路径下的程序

 

posted @ 2017-04-19 13:14  baymax(●—●)  阅读(8475)  评论(0编辑  收藏  举报