1. PowerShell# 查看powershell 版本
get-host
$host.version
# 新建目录
#当前目录新建文件
new-item FILENAME.xxx -type file
#当前目录新建文件夹
new
2020-04-27