This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 确保 PowerShell 遵循系统代理设置 | |
| # [System.Net.Http.HttpClient]::DefaultProxy = [System.Net.WebRequest]::DefaultWebProxy | |
| # [0] Powershell 快捷指令 | |
| # 输入 'ed' 即可编辑配置文件 | |
| function ed { notepad $PROFILE } | |
| # 输入 'rl' (reload) 即可让配置立即生效 | |
| function rl { . $PROFILE; Write-Host "--- 配置文件已重新加载 ---" -ForegroundColor Green } | |