美文网首页
powershell

powershell

作者: jiang | 来源:发表于2018-01-21 04:51 被阅读27次

新建文件

当前目录新建文件
new-item FILENAME.xxx -type file
当前目录新建文件夹
new-item DIRECTORYNAME -type directory
在指定目录新建
new-item TARGETDIR FILENAME.xxx -type file


重命名文件

这个重命名命令把 C:/Scripts/Test.txt 重命名为 C:/Scripts/New_Name.txt:
Rename-Item c:/scripts/Test.txt new_name.txt


移动文件
Move-Item c:\scripts\test.zip c:\testX

使用正则

Move-Item c:\scripts\*.zip c:\test

Powershell 输出中文乱码解决方法

打开控制面板 -> Change date,time,or number -> 打开 “Region” 对话框
选择 Administrative 选项卡,点击 change system locale
选择 Chinese(Simplified,China)确认后,重启电脑,即可。


相关文章

网友评论

      本文标题:powershell

      本文链接:https://www.haomeiwen.com/subject/pfrcpxtx.html