Skip to content

Windows 基础

这是 Windows 操作系统的基础知识文档。

什么是 Windows?

Windows 是由微软开发的个人计算机操作系统,广泛用于桌面、服务器和移动设备。

核心概念

  • 文件系统
  • 图形用户界面
  • 用户和权限
  • 进程管理
  • 控制面板
  • 注册表

快速开始

powershell
# 查看当前目录
Get-ChildItem

# 切换目录
cd C:\Users

# 创建文件
New-Item -ItemType File -Name hello.txt

# 编辑文件
notepad hello.txt

# 查看文件内容
Get-Content hello.txt

# 查看系统信息
systeminfo