知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“模板:Windows常用命令”的源代码
←
模板:Windows常用命令
模板
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
===概览=== Shell提供用户与操作系统或应用程序之间的直接通信,从而提供自动化操作的环境。 Windows 有两个命令行shell: Command shell 和 PowerShell。 {| class="wikitable" style="width: 100%; ! 名称 ! 描述 ! 网站 |- | Command shell | Command shell 简称cmd,是第一个内置于 Windows 中的 shell。 | |- | PowerShell | PowerShell由命令行 shell(简称cmdlets)、脚本语言和配置管理框架组成。 PowerShell扩展了Command shell,提供了额外的功能,PowerShell中可以运行 Command shell 和 PowerShell cmdlet,反过来则不行。 PowerShell 脚本是包含一个或多个 PowerShell 命令的纯文本文件,文件扩展名<code>.ps1</code>。Windows 8.1以上版本都内置了PowerShell,8.1之前或其他操作系统可以下载安装。 | [https://docs.microsoft.com/zh-cn/powershell/ PowerShell 文档] |} {{了解更多 |[https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands Windows 文档: Windows Server / Windows Commands] |[https://docs.microsoft.com/zh-cn/powershell/scripting/powershell-commands PowerShell 文档:PowerShell 命令是什么?] |[https://docs.microsoft.com/zh-cn/powershell/module/microsoft.powershell.core/about/about_scripts PowerShell 文档:脚本编写] }} ===文件管理=== {| !命令 !描述 !语法格式 !常用参数 !示例 |- | | | | | |} ===文本工具=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- | | | | | |} ===查找=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- | | | | | |} ===备份压缩=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- | | | | | |} ===权限管理=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- | | | | | |} === 远程 === {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- |[[SSH|ssh]] |远程登录工具 | | |<code>ssh root@46.100.125.122</code> 使用root用户登录46.100.125.122 |- | scp | 加密远程传输文件,基于ssh。 | |<code>-r</code> 传输目录 |<code>scp C:\Users\username\a.txt root@46.100.125.122:/home/root/b.txt</code> 将本地a.txt复制到远程主机的/home/root/b.txt <br \><code>scp -r root@46.100.125.122:/data/tes1/ /data/test1</code> 将服务器目录/data/tes1/下载到本地/data/tes1/ |} ===网络命令=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- |ping |网络诊断工具,检测连通性 | | | |- |ipconfig |查看和配置网络设备。 | | | |- |route |显示和修改路由表。 | | | |- |netstat |显示网络状态。 | | | |} ===磁盘管理=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- | [https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskpart diskpart] | 磁盘管理。 | | | 为MBR格式硬盘磁盘剩余空间创建扩展分区:<syntaxhighlight lang="bash" > diskpart list disk # 列出磁盘 select disk 0 # 选中要操作磁盘,根据编号 create partition extended # 剩余空间创建扩展分区 </syntaxhighlight> <br />删除磁盘分区:<syntaxhighlight lang="bash" > diskpart list disk # 列出磁盘 select disk 1 # 选中要操作磁盘,根据编号 list partition # 列出分区,也可使用part select partition 1 # 选中要操作分区,根据编号 delete partition # 删除分区,如果是系统或保护分区使用:delete part override </syntaxhighlight> |- | | | | | |} ===系统管理=== {| class="wikitable" style="width: 100%; !命令 !描述 !语法格式 !常用参数 !示例 |- |ps |进程(Process)状态信息 <br \><code>process status</code> | ps [参数] | | |- | | | | | |- | | | | | |}
本页使用的模板:
模板:了解更多
(
查看源代码
)
返回至“
模板:Windows常用命令
”。