Windows Server 2012改造成Windows8的方法(新增解决网络卡)

1、开启桌面体验

运行PowerShell,输入

Import-Module servermanager

Add-WindowsFeature Desktop-Experience


2、启用快速开关机(就是启用休眠)

管理员身份运行cmd,输入

powercfg /H on


打开电源选项,点左侧唤醒时需要输入密码,在下面可以找到快速启动,打钩。


3、添加.net组件

运行PowerShell,输入

Import-Module servermanager

add-windowsfeature NET-Framework-Features -Source:L:\Win8Svr\sources\sxs


把L:\Win8Svr\改成windows server2012的安装目录


4、开启音频服务

运行PowerShell,输入

Import-Module servermanager

set-Service "Audiosrv" -startuptype automatic


感觉没有用的同学可以自己到服务里面把这个服务改成自动就行。


5、开启无线组件(如果没有无线网络可以忽略)

运行PowerShell,输入

Import-Module servermanager

add-windowsfeature Wireless-Networking


6、禁止显示关机事件跟踪器(就是关机时显示的菜单)

运行gpedit.msc,展开左侧的本地计算机,计算机配置,管理模板,系统。在右侧找到并禁用Display shutdown Event Tracker(不太清楚这个怎么翻译,大概是显示关机事件跟踪程序),另外开机按Ctrl+Alt+Del 的功能也可以在这里取消。


7、取消IE保护

打开服务器管理,点左侧本地服务器,点右侧的IE安全配置后面的on,都改成off并确定。


8、取消服务器管理开机自动启动

打开服务器管理,点右上角的管理按钮,点服务器管理属性,第二项打钩并确定。


9、设置前台进程优先

打开系统属性,点左侧高级系统属性,第一个设置按钮,高级选项卡,选程序,并确定。


10、开启自动更新并且自动联网搜索驱动

打开系统属性,点左侧高级系统属性,硬件选项卡,驱动设置按钮,选第一项,并确定。


11、启用自定义帐户并禁用管理员帐户

首先添加一个管理员帐户,然后打开计算机管理,账户管理,双击Administratior,勾选禁用,并确定


12、设置帐户自动登陆

运行 control userpasswords2,点选需要自动登陆的用户名,然后取消用户必须输入用户名和密码登陆计算机的勾,确定,并输入两次密码。此功能会自动取消开机按Ctrl+Alt+Del。


13、安装DirectX增加游戏兼容性

微软官方下载地址:http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe

感谢98楼Shel_lee提供地址


下面附上1、2、3、4、5步骤合起来的批处理命令(需要手动编辑里面与第三步相关的安装路径,然后手动开启快速启动)(这个已经老了,请用最后的改进版)

echo Import-Module servermanager >C:\PShell.ps1

echo Add-WindowsFeature Desktop-Experience >>C:\PShell.ps1

echo add-windowsfeature NET-Framework-Features -Source:L:\Win8Svr\sources\sxs >>C:\PShell.ps1

echo add-windowsfeature Wireless-Networking >>C:\PShell.ps1

echo set-Service "Audiosrv" -startuptype automatic >>C:\PShell.ps1

powershell "-Command" "if((Get-ExecutionPolicy ) -ne 'AllSigned') { Set-ExecutionPolicy -Scope Process Bypass }; & "C:\PShell.ps1"


保存成bat批处理文件用管理员身份运行,即可实现1-5步,完成后可以删除C:\PShell.ps1临时文件。


20130626新增解决网络非常慢的现象。管理员运行下面命令netsh int tcp set global  ecn=disable

Windows server 2013进入高级启动菜单,安全模式,禁用驱动程序强制签名,方法:双系统可以在选择系统的时候有选项进入高级启动模式,单系统目前只能把引导项复制一份变成双系统,这样开机时候就有选择系统的菜单,可以进入高级启动模式。

新的批处理文件

netsh int tcp set global ecn=disable

powercfg /H on

echo Import-Module servermanager >C:\PShell.ps1

echo Add-WindowsFeature Desktop-Experience >>C:\PShell.ps1

echo add-windowsfeature NET-Framework-Features -Source:J:\sources\sxs >>C:\PShell.ps1

echo add-windowsfeature Wireless-Networking >>C:\PShell.ps1

echo set-Service "Audiosrv" -startuptype automatic >>C:\PShell.ps1

powershell "-Command" "if((Get-ExecutionPolicy ) -ne 'AllSigned') { Set-ExecutionPolicy -Scope Process Bypass }; & "C:\PShell.ps1"

del C:\PShell.ps1

pause


蓝牙解决方法,请用中文免费千月蓝牙软件:http://www.bluesoleil.com.cn/ 别看页面挺山寨,是外国大名鼎鼎的蓝牙软件的中文免费版。亲测支持Windows server 2013 R2(但是笔记本自带蓝牙死都驱动不上,USB的可以)



 


 


http://www.win2012workstation.com/

This manual will guide you through the process of configuring your Windows Server 2012 so it can be used as a day-to-day operating system. If you are absolutely not familiar with the new version of Windows, read this article first. In case you don’t want to follow these steps, a converter application is available to automate the conversion process: Microsoft Server Converter 2012.

Table of Contents

1. InstallationDriversOS LanguageComputer NameOwner Information
2. Wireless Networking and Enable Sound
3. Disable Ctrl+Alt+Del at LogonPassword Restrictions and Shutdown Event Tracker
4. Disable IE Enhanced Security
5. Performance for Applications
6. ThemesBoot to Classic Desktop and Aero Cursors
7. Windows 8 (Metro) AppsDefault Windows 8 Apps and Windows 8 Internet Explorer
8. Missing App DllsVisual Effects/Thumbnails and Performance Information and Tools
9. Disable DEP and SEHOP
10. eHome IR Transceiver and Start Screen Alternatives

Additional Resources

Windows Server to Workstation Forum
Security Software Compatibility List
Games Compatibility List
Wish List

Other Manuals

# Windows Server 2008 R2 – www.win2008r2workstation.com
# Windows Server 2008 – www.win2008workstation.com





如何将 Windows Server 2012 改造成 Windows 8?(http://www.appnext.us/microsoft-server-converter-2012/

Windows Server 2012 是与 Windows 8 相对应的服务器版操作系统,共用内核和服务包,所以具有良好的兼容性。Server 2012 并不包含 Windows 8 中的一些臃肿组件,因此显得更简洁和高效。许多用户将其作为工作站用操作系统。

Sawo 开办网站、撰写指南,开发出了一款工具——MicrosoftServer Converter 2012,只需轻点几次鼠标,就能够把 Server 2012 转变成为 Windows 8。功能全面、设置丰富,还有各种想不到的绝妙资源,例如 Metro 风格应用、Aero 指针方案、Windows 8 桌面壁纸……绝对比你自己设置要好得多。

转换工具下载地址:MICROSOFT SERVER CONVERTER 2012http://www.win2008workstation.com/forum/viewtopic.php?f=54&t=2108


转载于:https://www.cnblogs.com/phyking/p/4456608.html

IVTBlueSoleil.10.0.497.0-Win2008R2-Win2019-OK 20190420 注:压缩包中附有安装截图 1、使用效果简介: 安装之前,通过Windows Server 2019自带蓝牙驱动,QCY Q13勉强能够使用,但需要经常性重新配对才行。moloke D16虽然能够配对发声,但发声几秒后就出现声音阻塞,无法正常听音。 经测试,在Windows Server 2019中安装该驱动后,能够象在Win7中一样,正常使用两款蓝牙耳机:QCY Q13、moloke D16。 2、驱动安装方法 A、插入蓝牙适配器 B、直接运行setup.exe进行安装 \IVTBlueSoleil.10.0.497.0\install\setup.exe 语言选英语或其他语言; 不要选择安装Install BlueSoleil cPhone (千月手机助手,不实用) 其余默认 C、安装完后,先不要重启计算机。先进行注册 注意:必须打开资源管理器导入注册信息,64位系统导入h:\Driver\Bluetooth\IVTBlueSoleil.10.0.497.0\Reg\x64.reg。导入后需要重启计算机才能生效。 (TotalCMD导入默认不具备管理员权限,不能直接导入HKEY_LOCAL_MACHINE分支,只能直接导入HKEY_CURRENT_USER分支) D、修改 host (D:\Windows\System32\drivers\etc): # Start of IVTBlueSoleil.10.0.496.1 127.0.0.1 license.bluesoleil.com 127.0.0.1 license2.bluesoleil.com 127.0.0.1 license3.bluesoleil.com 127.0.0.1 www.bluesoleil.com 127.0.0.1 bluesoleil.com # End of IVTBlueSoleil.10.0.496.1 注:若有防火墙阻止IVTBlueSoleil访问网络,可以不用修改host E、注册之后,需要重新启动计算机才能生效 F、重启计算机很快,没有延迟
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值