我有一个PowerShell脚本,我想在Windows 7启动时启动,我该怎么做?
如果你在启动时运行这个命令,你应该没问题:
powershell.exe -noexit c:\scripts\MyAwesomeScript.ps1
有关此主题的更多信息可以在这里find: http : //technet.microsoft.com/en-us/library/ee176949.aspx
转到开始 – >运行 – > taskschd.msc。 创build一个基本任务,并将触发器设置为“计算机启动时”。 select“%windir%\ System32 \ WindowsPowerShell \ v1.0 \ powershell.exe”作为你的程序名,并设置你的PowerShell脚本的完整path作为参数。 请注意,这只会在用户login到机器时运行。
如果你需要这个脚本运行而不需要用户login,那么就到开始 – >运行 – > Gpedit.msc。 在计算机configuration – > Windows设置 – >脚本下,双击“启动”图标编辑它的属性。 点击添加,然后将“脚本名称”设置为“%windir%\ System32 \ WindowsPowerShell \ v1.0 \ powershell.exe”,脚本参数将成为PowerShell脚本的path。 希望这可以帮助
将链接添加到您的PowerShell脚本到启动文件夹。
C:\ ProgramData \ Microsoft \ Windows \ Start Menu \ Programs \ StartUp