暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

win10 ltsc 安装winget及系统初始化

老柴杂货铺 2025-03-17
19
有台老笔记本,重新装下系统 ,记录下安装过程
msdn下载iso
 (https://next.itellyou.cn/Original/#cbp=Product?ID=f905b2d9-11e7-4ee3-8b52-407a8befe8d1)
把下载好的镜像放到做好ventoy的u盘后全新安装
win10 ltsc默认不带Microsoft Store,需要手动安装winget
访问https://github.com/microsoft/winget-cli/releases,下载需要的文件
    #下载winget依赖包
    Invoke-WebRequest -Uri https://github.com/microsoft/winget-cli/releases/download/v1.10.340/DesktopAppInstaller_Dependencies.zip  -OutFile ./DesktopAppInstaller_Dependencies.zip
    #解压依赖包
    Expand-Archive DesktopAppInstaller_Dependencies.zip
    #下载winget安装包
    Invoke-WebRequest -Uri https://github.com/microsoft/winget-cli/releases/download/v1.10.340/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle  -OutFile ./Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
    #下载winget证书
    Invoke-WebRequest -Uri https://github.com/microsoft/winget-cli/releases/download/v1.10.340/4df037184d634a28b13051a797a25a16_License1.xml -OutFile 4df037184d634a28b13051a797a25a16_License1.xml
    #安装winget依赖包
    Add-AppPackage .\DesktopAppInstaller_Dependencies\x64\Microsoft.UI.Xaml.2.8_8.2501.31001.0_x64.appx
    Add-AppPackage .\DesktopAppInstaller_Dependencies\x64\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64.appx
    #安装winget
    add-AppxProvisionedPackage -Online -PackagePath  .\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle  -LicensePath .\4df037184d634a28b13051a797a25a16_License1.xml


    复制
    为winget更换国内源
      #以管理员身份运行powershell
      winget source remove winget
      winget source add winget https://mirrors.ustc.edu.cn/winget-source
      复制
      鸡活
        irm https://get.activated.win | iex
        复制
        安装常用工具
          #安装Terminal
          winget install Microsoft.WindowsTerminal
          #安装powershell(最新版)
          winget install  Microsoft.PowerShell
          #安装git
          winget install git.git
          #安装mamba
          winget install CondaForge.Miniforge3
          #安装截屏工具
          winget install Snipaste
          #安装notepad4
          winget install notepad4
          #安装微信
          winget install Tencent.WeChat
          #安装trae
          winget install ByteDance.Trae
          复制

          文章转载自老柴杂货铺,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

          评论