PowerShell脚本文件后缀
学习笔记作者:admin日期:2025-06-01点击:12
摘要:总结了PowerShell脚本的标准文件后缀及其使用方法。
PowerShell脚本文件后缀
.ps1 是 PowerShell 脚本的标准文件扩展名。
假设你写了一个简单的 PowerShell 脚本,内容如下:
```powershell
Write-Host "Hello, World!"
```
你可以将这个文件保存为:
```
hello.ps1
```
然后在 PowerShell 中运行它:
```powershell
.\hello.ps1
```
注意事项
- 默认情况下,Windows 可能会限制运行 .ps1 脚本。可以通过以下命令查看和更改执行策略:
Get-ExecutionPolicy
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
2. 推荐使用 PowerShell ISE 或 VS Code + PowerShell 插件作为编辑器。