搜虎博客 - 人生天地间,忽如远行客。

含标签“powershell”的文章

Windows Admin center 允许远程访问WIn 10(包括远程桌面和powershell)

> windows admin center 在win10 中安装了,但是没有远程桌面的菜单。 1. 关闭防火墙 2. PowerShell运行命令: ``` bash ENable...

powershell 创建别名

>powsershell 创建alias 1.首先保证.profile 是存在的 ```bash New-Item –Path $Profile –Type File –Force ...

无法加载文件 ******.ps1,因为在此系统中禁止执行脚本。

>这个是因为powershell默认不允许运行没有签名的脚本。 解决办法 ```bash set-executionpolicy -scope CurrentUser Unrestri...