无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站投放广告、加入VIP会员,请联系 微信:wuyouceo
查看: 5440|回复: 8
打印 上一主题 下一主题

[已解决] Windows Server 2022 官方下载

[复制链接]
跳转到指定楼层
1#
发表于 2021-11-24 11:12:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 chishingchan 于 2021-11-25 10:38 编辑

在 Microsoft Evaluation Center 试用 Windows Server 2022

在选择安装时注意选择带 Desktop 的!

激活:
  1. @echo off
  2. :: Windows Server 2022 Datacenter:WX4NM-KYWYW-QJJR4-XV3QB-6VM33
  3. :: Windows Server 2022 Standard:VDYBN-27WPP-V4HQT-9VMD4-VMK7H
  4. slmgr /upk
  5. slmgr /ipk VDYBN-27WPP-V4HQT-9VMD4-VMK7H
  6. slmgr /skms kms.cangshui.net
  7. slmgr /ato
复制代码

不需要按 三个组合键:
  1. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /t REG_DWORD /d 1 /f
复制代码
  1. @echo off
  2. :: 用户帐户控制: 在管理审批模式下管理员的提升提示行为:不提示,直接提升
  3. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /f /v "ConsentPromptBehaviorAdmin" /t REG_DWORD /d 0
  4. :: 用户帐户控制: 对内置管理员帐户使用管理审批模式:已启用
  5. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /f /v "FilterAdministratorToken" /t REG_DWORD /d 1

  6. :: 获得所有权
  7. reg add "HKCR\*\shell\runas" /f /ve /t REG_SZ /d "获得所有权"
  8. reg add "HKCR\*\shell\runas" /f /v "HasLUAShield" /t REG_SZ /d ""
  9. reg add "HKCR\*\shell\runas" /f /v "NoWorkingDirectory" /t REG_SZ /d ""
  10. reg add "HKCR\*\shell\runas\command" /f /ve /t REG_SZ /d "cmd.exe /c takeown /f "%%1" && icacls "%%1" /grant administrators:F"
  11. reg add "HKCR\*\shell\runas\command" /f /v "IsolatedCommand" /t REG_SZ /d "cmd.exe /c takeown /f "%%1" && icacls "%%1" /grant administrators:F"
  12. reg add "HKCR\Directory\shell\runas" /f /ve /t REG_SZ /d "获得所有权"
  13. reg add "HKCR\Directory\shell\runas" /f /v "HasLUAShield" /t REG_SZ /d ""
  14. reg add "HKCR\Directory\shell\runas" /f /v "NoWorkingDirectory" /t REG_SZ /d ""
  15. reg add "HKCR\Directory\shell\runas\command" /f /ve /t REG_SZ /d "cmd.exe /c takeown /f "%%1" /r /d y && icacls "%%1" /grant administrators:F /t"
  16. reg add "HKCR\Directory\shell\runas\command" /f /v "IsolatedCommand" /t REG_SZ /d "cmd.exe /c takeown /f "%%1" /r /d y && icacls "%%1" /grant administrators:F /t"

  17. :: 选择 IME 默认模式:英语
  18. reg add "HKCU\SOFTWARE\Microsoft\InputMethod\Settings\CHS" /f /v "Default Mode" /t REG_DWORD /d 0

  19. :: 修改启动菜单界面(传统文本模式)
  20. bcdedit /set {default} bootmenupolicy legacy
  21. bcdedit /set {ntldr} description "Windows XP"
  22. :: 修改菜单默认启动时间
  23. bcdedit /timeout 5

  24. rem 显示桌面图标:计算机
  25. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /f /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0
  26. rem 显示桌面图标:用户的文档(件)
  27. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /f /v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0
  28. rem 显示桌面图标:网络
  29. reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /f /v "{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}" /t REG_DWORD /d 0
复制代码
  1. @echo off
  2. :: 检测 SID 值
  3. for /f "delims=" %%a in ('wmic userAccount where "Name='%userName%'" get SID /value') do call set %%a
  4. :: 禁用关闭事件跟踪程序
  5. reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /f /v "ShutdownReasonOn" /t REG_DWORD /d 0
  6. reg add "HKU\%SID%\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{8CBE2C7A-EB5F-4EDA-85DB-B8E79B27E05C}Machine\Software\Policies\Microsoft\Windows NT\Reliability" /f /v "ShutdownReasonOn" /t REG_DWORD /d 0
  7. reg add "HKU\%SID%\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{8CBE2C7A-EB5F-4EDA-85DB-B8E79B27E05C}Machine\Software\Policies\Microsoft\Windows NT\Reliability" /f /v "**del.ShutdownReasonUI" /t REG_SZ /d " "
复制代码

2#
发表于 2021-11-24 11:31:46 来自手机 | 只看该作者
无gui版,2008开始就有了,版本没选对。
回复

使用道具 举报

3#
发表于 2021-11-24 12:04:19 | 只看该作者
选择有gui图形界面的版本吧
简体中文 - Windows Server 2022(2021年十一月更新 - 20348.350)

Windows Server 2022 Standard、Windows Server 2022 Standard (Desktop Experience)、Windows Server 2022 Datacenter、Windows Server 2022 Datacenter (Desktop Experience) (4)
文件: zh-cn_windows_server_version_2022_updated_nov_2021_x64_dvd_0b271600.iso
SHA-256: 19E6C619E73045D82FC6D631BF35C947C2C5B9E8E8106464F0EBCE0408E3E30F
zh-cn_windows_server_version_2022_updated_nov_2021_x64_dvd_0b271600.iso (4.91 GB)

zh-cn_windows_server_version_2022_updated_nov_2021_x64_dvd_0b271600.iso (4.91 GB)
回复

使用道具 举报

4#
发表于 2021-11-24 12:21:02 | 只看该作者
安装开始过程中有选择版本列表中,核心安完是你说的界面。
回复

使用道具 举报

5#
发表于 2021-11-24 14:30:29 | 只看该作者
你安装的是内核版(或者核心版)吧,没有安装 GUI版
回复

使用道具 举报

6#
发表于 2021-11-24 18:55:14 | 只看该作者
原版的话 安装的时候选大的 9g+的
回复

使用道具 举报

7#
发表于 2021-11-25 12:48:59 | 只看该作者
标题和内容都改了,回复的都文不对题了。

点评

【已解决】问题都已解决了也没有参考价值,所以加点有用的留作备份!  详情 回复 发表于 2021-11-25 16:16
回复

使用道具 举报

8#
 楼主| 发表于 2021-11-25 16:16:11 | 只看该作者
旁观者清 发表于 2021-11-25 12:48
标题和内容都改了,回复的都文不对题了。

【已解决】问题都已解决了也没有参考价值,所以加点有用的留作备份!

点评

也好。下等看到一条消息,计算机安全组织Cisco Talos发现了一个新的漏洞,包括Windows 11和Windows Server 2022在内的所有Windows版本均受影响。该漏洞存在于Windows安装程序中,允许攻击者提升自己的权限成为管理员  详情 回复 发表于 2021-11-25 18:36
回复

使用道具 举报

9#
发表于 2021-11-25 18:36:47 | 只看该作者
本帖最后由 旁观者清 于 2021-11-25 18:38 编辑
chishingchan 发表于 2021-11-25 16:16
【已解决】问题都已解决了也没有参考价值,所以加点有用的留作备份!

也好。下午看到一条消息,计算机安全组织Cisco Talos发现了一个新的漏洞,包括Windows 11和Windows Server 2022在内的所有Windows版本均受影响。该漏洞存在于Windows安装程序中,允许攻击者提升自己的权限成为管理员。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2025-8-14 16:03

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表