设置双击ps1脚本直接用Powershell打开。
默认.ps1 文件双击是不能打开的,只能右键运行。
解决方法:
1.按windows+R打开运行,输入regedit,打开注册表
2.找到HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command
3.双击右边的默认,将数值数据改为如下,点击确认保存。
"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" "-NoExit" -file "%1"
OK