PowerShell 命令总结(每天记录一点点)
PowerShell
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
项目地址:https://gitcode.com/gh_mirrors/po/PowerShell
免费下载资源
·
Windows10 右键添加在当前文件夹下打开PowerShell
在文件夹空白处,按住shift同时鼠标右击,发现没??发现没!!!!
如果你想在PowerShell 切换到cmd命令,只需要键入 cmd命令就行。
微信多开脚本
@echo off
start /d "d:\Program Files (x86)\Tencent\WeChat" WeChat.exe
start /d "d:\Program Files (x86)\Tencent\WeChat" WeChat.exe
exit
windows分区盘加锁命令
右键管理员运行
@echo off
manage-bde.exe I: -lock
运维常用命令
(1)检测md5
C:\Users\623219\Downloads>certutil -hashfile 11.txt md5
MD5 的 11.txt 哈希:
cfe876c5addc5d85bcab5e3d5e1cf33b
CertUtil: -hashfile 命令成功完成。
C:\Users\623219\Downloads>
办公常用命令
(1) findstr
tasklist |findstr "Pointer"
(2) taskkill
taskkill /f /im Pointer.exe # 干掉进程
## 结束进程
tskill 22432
(3) 调出计划任务
taskschd.msc
(4) 调出计算器
calc
(5) 调出画图
mspaint
(6) 查看windows系统的时间等各种信息情况
systeminfo
(7) 下载文件
Invoke-WebRequest -Uri http://jdcg.file.07553.net/css/css.css -OutFile css.css
(8) tree 命令
tree /? # 显示帮助命令
tree /F xx # 显示文件夹和目录文件
(9)CMD 日常操作命令总结
# 删除非空目录, /Q 表示安静模式
rmdir /S /Q car-manage-system
# 创建目录
md dir_qq
## 拷贝目录以及文件
xcopy E:\Blog\blog5\source\_posts E:\Blog\blog5MD /e /Y /d
GitHub 加速计划 / po / PowerShell
44.28 K
7.17 K
下载
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
最近提交(Master分支:3 个月前 )
a1774fd9
3 个月前
5ad1f1d2
3 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)