Skip to content

windows 常用命令

参数命令

  • /D 创建目录符号链接。默认为文件符号链接。
  • /H 创建硬链接而不是符号链接。
  • /J 创建目录连接。

example

bash
mklink /D [current] [target]

windows 计算 md5

sh
certutil -hashfile [target] MD5

windows 批量删除凭据

sh
# clearCmdkey.bat

@echo off
REM 列出所有凭据并逐个删除
for /f "tokens=1,2 delims= " %%a in ('cmdkey /list') do (
    if "%%a"=="Target:" (
        cmdkey /delete:%%b
        @REM echo %%b
    )
)

echo 所有凭据删除成功!

windows 磁盘管理

cmd
diskmgmt.msc

windows 将目录结构另存为文件

sh
# ls-save.bat

dir >> ls.txt

windows 事件查看器

sh
eventvwr.msc

windows 显示隐藏文件扩展名

sh
# cmd

# 显示文件扩展名
# 对于当前用户(当前登录的用户)
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f
# 对于所有用户(需要管理员权限)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f

# 隐藏文件扩展名
# 对于当前用户(当前登录的用户)
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 1 /f
# 对于所有用户(需要管理员权限)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 1 /f

# 重新启动资源管理器
taskkill /f /im explorer.exe
start explorer.exe
sh
# PowerShell。

# 显示文件扩展名
# 对于当前用户(当前登录的用户)
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 0
# 对于所有用户(需要管理员权限)
Set-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 0

# 隐藏文件扩展名
# 对于当前用户(当前登录的用户)
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 1
# 对于所有用户(需要管理员权限)
Set-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 1

# 重新启动资源管理器
Stop-Process -Name "explorer" -Force