Tried Ultimate Performance & run some synthetic benchmarks no difference can someone confirm or I'm missing something
It's just a powerscheme, iirc it has the hdd shutdown set to "never" in opposite of the 20min on high power..
Thanks, downloaded the uup files and made an iso and installed with key provided in earlier post. Worked flawlessly. Then updated to 16299.390
are you sure that home 16278 is installed on your machine ? open command prompt (in admin mode) then type : Code: slmgr /dlv and post the screen.
@enthusiast: Reur Howto establish HWID for Win 10 KMS activated installs. This works on Win 10 Pro For Workstations. v 16251.1. I live in the US and was not able to get an HWID by the typical method. (only by abbodi 1406's KMS_VL_ALL followed by your new procedure! Another great job on your part! Keep up the good work!
Or in other words, it's the standard "High Performance" power plan tweaked to turn off all power management. Just like I tweak it.
This does work. Thanks @mehdibleu and @xinso. Sure were a lot of hoops to jump through to get here. Hopefully it will not be this way once RS4 is released.
Ok folks I have Windows 10 for Workstations installed see screenshots attached, do I now run gatherosstate.exe from the ISO i used to install it? and then use the same USB drive to reinstall windows offline and then Copy GenuineTicket.xml to C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket ?
Yeah this. Was not even paying attention to this until I found 5 of my test VMs all registered while debugging my full WimImaging wrapper.
You just double-click on the gatherosstate.exe and it will output a GenuineTicket.xml to the directory the .exe is located. Then just save the GenuineTicket.xml and you can simply add that XML to it's appropriate location.
After your image is mounted, copy and paste the following in either PowerShell or PowerShell ISE to load the function, and then run the function command. It will auto-detect the location the WIM is mounted at. Since it accepts pipeline arguments, you can use "C:\Path To My Data\GenuineTicket.xml" | Apply-GenuineTicket, or Apply-GenuineTicket "C:\Path To My Data\GenuineTicket.xml" Code: Function Apply-GenuineTicket { [CmdletBinding()] Param ( [Parameter(Mandatory = $true, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] [string]$GenuineTicket ) Begin { $MountFolder = (Get-WindowsImage -Mounted).Path $GenuineTicket = Get-Item -LiteralPath $GenuineTicket -Force } Process { If ($GenuineTicket.Extension -ilike ".XML") { Copy-Item -Path $GenuineTicket -Destination "$MountFolder\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket\GenuineTicket.xml" -Force Write-Output "$(Split-Path $GenuineTicket -Leaf) added to the image." } Else { Write-Warning "$(Split-Path $GenuineTicket -Parent) does not contain a GenuineTicket.xml file." Break } } }
Yes, I was referring to Offline, which I assumed he was also referring to. *EDIT* Using a GenuineTicket.xml will allow you to access the "Personalize" menu without connecting to the internet to activate it first. I personally rarely use a GenuineTicket.xml, but they can be useful when an OS is deployed to a system that has yet to be granted internet access.