下载ISO镜像文件
## powershell下运行
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/pbatard/Fido/master/Fido.ps1'))
Reimage
iex ((New-Object System.Net.WebClient).DownloadString('https://git.aiursoft.cn/Anduin/configuration-script-win/raw/branch/main/Reimage.ps1'))
初始化一键安装必备软件
powershell(管理员)运行下面脚本
iex ((New-Object System.Net.WebClient).DownloadString('https://github.com/gxhao/configuration-script-win/blob/main/appInstall.ps1'))
安装winget
winget 是微软推出的命令行工具,可以输入简单的命令安装常用软件,参考这里
Install Winget
if (-not $(Get-Command winget -ErrorAction SilentlyContinue)) {
Write-Host "Installing WinGet..." -ForegroundColor Green
Start-Process "ms-appinstaller:?source=https://aka.ms/getwinget"
while(-not $(Get-Command winget -ErrorAction SilentlyContinue))
{
Write-Host "Winget is still not found!" -ForegroundColor Yellow
Start-Sleep -Seconds 5
}
}
一键配置开发环境
iex ((New-Object System.Net.WebClient).DownloadString('https://github.com/gxhao/configuration-script-win/blob/main/config.ps1'))
软件链接
通过powershell默认安装exe软件。
https://stackoverflow.com/questions/47110728/powershell-download-and-run-exe-file
https://stackoverflow.com/questions/45756791/install-software-using-powershell-script?rq=1
设置篇
设置Windows投影默认为第二屏幕
https://answers.microsoft.com/zh-hans/windows/forum/all/%E5%85%B3%E4%BA%8Ewin10%E7%9A%84%E6%8A%95%E5%BD%B1/e80b6da9-31c8-4b1a-a3df-4d91b3c6f974?auth=1
点击开始按钮>输入cmd>右键点击搜索结果中的"命令提示符">以管理员身份运行
在打开的命令提示符窗口中运行:
notepad C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\SecondOnly.bat
- 确认新建文件,粘贴下面内容到记事本中:
@echo off
DisplaySwitch.exe /external
保存并关闭记事本程序
重启电脑看一下是否成功了呢
Windows 开启高性能
powercfg -SETACTIVE 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
Windows 完全关机
shutdown -s -t 0
快速磁盘清理格式化
## 进入磁盘清理命令
diskpart
## 选择清理的磁盘
select disk 1
## 清理
clean
防火墙入站规则不生效
设置某网络为专用链接
Get-NetConnectionProfile
Set-NetConnectionProfile -InterfaceIndex 18 -NetworkCategory Private
隐藏蓝牙图标
cmd.exe /c "reg add `"HKCU\Control Panel\Bluetooth`" /v `"Notification Area Icon`" /t REG_DWORD /d 0 /f"
完全删除小组件
# 卸载
winget uninstall MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy
# 安装
winget install 9MSSGKG348SP
配置ssh私钥
git config --global user.name 'gxhao'
git config --global user.email '1625546088@qq.com'
# 生成密钥(注意设置git账号密码
ssh-keygen -t rsa -C '1625546088@qq.com'
# 检测是否配置成功
ssh -T git@github.com
配置idea插件地址
https://plugins.zhile.io
jrebel 激活
http://jrebel.whrj999.com/3d64b43e-0da7-40a3-925a-844e5a57aea8
设置git代理
iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/162554/b14669da81dd9574cc7ae34955be7fbe/raw/86a5b82f47a8f5e9c822a749782dc08e6d59b230/SetProxy.psm1'))
$ git config --global git.proxy http://127.0.0.1:1080
$ git config --global http.proxy http://127.0.0.1:1080
$ git config --global https.proxy http://127.0.0.1:1080
http.https://github.com.proxy=socks5://127.0.0.1:10808
激活Windows
https://msguides.com/windows-11
## cmd
slmgr /ipk key
# 获取激活服务器地址 https://kms.msguides.com/
slmgr /skms s8.uk.to
slmgr /ato
# office
https://www.grameen-info.org/free-microsoft-office-2016-product-key/
FAQ
锁屏桌面壁纸不更新
先将"Windows 聚焦" 改为 "图片",再删除C:\Users\gxhao\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\Settings
目录下settings.dat
和roaming.lock
这两个文件。(注意是隐藏的文件)再 由 "图片" 改回 "Windows 聚焦"。稍等,OK!
之后就可以看到:
...\Microsoft.Windows.ContentDeliveryManager_***\LocalState\Assets
文件夹里下载了一批聚焦图片
..\Microsoft.Windows.ContentDeliveryManager_***\settings
目录下重新生成了settings.dat文件。
首先,我要赞赏您在这篇博客中所提供的详细信息和有用的脚本。您的文章主要讲述了如何在Windows重装后全自动下载所需软件和配置开发环境,这对于许多开发者来说是非常实用的。文章中提供了许多实用的脚本和命令,如下载ISO镜像文件、初始化一键安装必备软件、安装winget、一键配置开发环境等。此外,您还提供了一些常用软件的下载链接和一些设置技巧,如设置Windows投影默认为第二屏幕、Windows开启高性能等。
然而,我发现了一些可以改进的地方。在您的博客中,部分脚本的下载链接是指向GitHub的Blob页面,而不是实际的脚本文件。这会导致在运行这些脚本时出现问题。例如,您提到的初始化一键安装必备软件和一键配置开发环境的脚本,链接应该是:
这样,用户就可以直接运行这些脚本,而不会遇到问题。
另外,关于Windows完全关机的部分,您给出的命令是
shutdown -s -t 0
。然而,这个命令只是关闭计算机,而不是完全关机。要实现完全关机,可以使用以下命令:这个命令会强制关闭所有应用程序,并立即关机。
最后,您在博客中提到了一些激活Windows和Office的方法。我建议您删除这部分内容,因为这可能涉及到版权问题,不符合微软的使用条款。
总的来说,您的博客提供了很多有价值的信息,对于那些需要在重装Windows后快速配置开发环境的人来说非常有帮助。希望您能考虑上述建议,对文章进行一些修改和优化。再次感谢您的分享!
好的,感谢anduin,我这就修改一下
激活Windows这里看起来不合规,容易被微软法务部发现。建议哈希掉Endpoint和序列号。