Windows学习之路
本篇文章汇总了 Windows 学习的相关资源,包括 Windows 的基本概念、命令行工具、PowerShell 等内容,适合 Windows 开发者参考。
- Microsoft®Update Catalog: https://www.catalog.update.microsoft.com/
PowerShell
- PowerShell: https://github.com/PowerShell/PowerShell
- Document: https://learn.microsoft.com/zh-cn/powershell/
PowerShell Studio 2023: https://www.sapien.com/software/powershell_studio- Powershell 错误记录:详细错误:http://www.pstips.net/powershell-error-record-details.html
- pstips.net: http://www.pstips.net/
-
如何改变PowerShell启动的默认目录: https://blog.csdn.net/PowerShell/article/details/2341619
- 查看powershell命令帮助 help [cmd]:help Remove-Item
- 删除文件夹:Remove-Item path –Recurse –Forse
- 查看历史记录:Get-Content (Get-PSReadLineOption).HistorySavePath
WSL(Windows Subsystem for Linux)
- WSL: https://learn.microsoft.com/zh-cn/windows/wsl/
- WSL通过ADB方式连接手机: WSL Settings->网络->网络模式,调整为Mirrored或者VirtioProxy模式。
- WSL通过fastboot连接手机(待验证):https://learn.microsoft.com/zh-cn/windows/wsl/connect-usb
Dos
- FreeDOS: https://www.freedos.org/
- DOSBox: https://www.dosbox.com/
- 中国DOS联盟: https://www.cn-dos.net/
- MaxDOS: http://maxdos.net/
CMD
- 浅谈批处理中的%cd%与%~dp0: http://blog.csdn.net/luols/article/details/7397757
:: 到了22点电脑就会出现“系统关机”对话框,默认有30秒钟的倒计时并提示你保存工作
at 22:00 Shutdown -s
:: 以倒计时的方式关机,“3600”代表60分钟
Shutdown.exe -s -t 3600
:: 取消自动关机
shutdown -a
:: 打开设置自动关机对话框,对自动关机进行设置
shutdown -i
:: 查看所有的端口占用情况
netstat –ano
:: 查看指定端口的占用情况
netstat -aon|findstr "9050"
:: 查看PID对应的进程
tasklist|findstr "2016"
:: 结束指定PID的进程
taskkill /f /t /im tor.exe
:: 修复系统默认文件关联
:: XXX代表文件类型,比如修复TXT和BAT的文件关联,命令就是assoc.TXT=TXTfile 和 assoc.BAT=BATfile
assoc.XXX=XXXfile
Others
- chocolatey(The Package Manager for Windows): https://chocolatey.org/
- WinGet: https://learn.microsoft.com/zh-cn/windows/package-manager/winget/
- UniGetUI: https://github.com/marticliment/UniGetUI
-
terminal: https://learn.microsoft.com/en-us/windows/terminal/
- Windows与Office激活: https://github.com/zbezj/HEU_KMS_Activator
- 如何批量取消Word文档中的超链接?https://zhuanlan.zhihu.com/p/673647924
- DOS登陆FTP的方法: https://blog.csdn.net/iteye_4537/article/details/82308152
- hosts文件的作用说明: https://blog.csdn.net/zsjwenrou/article/details/81134595
- Windows 7下读写Ext2/Ext3/Ext4文件系统: https://blog.csdn.net/hansel/article/details/7557033
- Win10添加本地帐户且设置为管理员帐户的方法: https://jingyan.baidu.com/article/7082dc1c629264e40a89bd34.html
- 证书错误…导航已阻止: https://jingyan.baidu.com/article/cbf0e5008af1392eaa2893cf.html
- win10微软账号登录一直转圈进不去解决方法教程:http://mip.xitongcheng.com/jiaocheng/win10_article_68214.html
Windows重装注意事项
- 虚拟机数据备份,包含C:\Users\jiangxin.VirtualBox和C:\Users\jiangxin\VirtualBox VMs
Comments