[DISCUSSION] Windows 10 Pro for Workstations SKU

Discussion in 'Windows 10' started by Micro, Aug 11, 2017.

  1. dhjohns

    dhjohns MDL Guru

    Sep 5, 2013
    3,262
    1,733
    120
    Your best bet is to download 16278. It is available, and works.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Jacoub

    Jacoub MDL Member

    Aug 14, 2011
    116
    16
    10
    Tried Ultimate Performance & run some synthetic benchmarks no difference can someone confirm or I'm missing something
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    It's just a powerscheme, iirc it has the hdd shutdown set to "never" in opposite of the 20min on high power..
     
  4. ppcwilly

    ppcwilly MDL Novice

    Oct 2, 2009
    12
    1
    0
    Thanks, downloaded the uup files and made an iso and installed with key provided in earlier post. Worked flawlessly. Then updated to 16299.390
     
  5. truongpro

    truongpro MDL Novice

    Aug 2, 2016
    23
    3
    0
    I enter key but is error key is invaild
     
  6. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,694
    1,717
    150
    #1506 endbase, Mar 18, 2018
    Last edited: Mar 18, 2018
    16299.390 gonne test this

    edit nope stuck on 16299.15 update not working error
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. mehdibleu

    mehdibleu MDL Expert

    Jun 14, 2017
    1,008
    251
    60
    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.
     
  8. Vern

    Vern MDL Junior Member

    May 24, 2012
    63
    28
    0
    @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!
     
  9. pf100

    pf100 Duct Tape Coder

    Oct 22, 2010
    2,067
    3,455
    90
    Or in other words, it's the standard "High Performance" power plan tweaked to turn off all power management. Just like I tweak it.
     
  10. tracit99

    tracit99 MDL Senior Member

    Oct 17, 2014
    278
    105
    10
    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.

    PWS Updated to 16299.309.jpg
     
  11. drozek

    drozek MDL Novice

    Sep 2, 2015
    16
    2
    0
    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 ?
     

    Attached Files:

  12. rcstar6696

    rcstar6696 MDL Senior Member

    Jun 11, 2017
    447
    351
    10
    #1512 rcstar6696, Mar 18, 2018
    Last edited: Dec 24, 2018
    -snip-
     
  13. coromonadalix

    coromonadalix MDL Senior Member

    Jul 21, 2009
    440
    87
    10
    hi @ALL is there an non expiration date build version available ? once we convert them to ProWs ?
     
  14. efes34

    efes34 MDL Senior Member

    Nov 17, 2009
    344
    62
    10
    16299.15
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,694
    1,717
    150
    Confirmed working thx alot :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    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
           }
       }
    }
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. rcstar6696

    rcstar6696 MDL Senior Member

    Jun 11, 2017
    447
    351
    10
    #1519 rcstar6696, Mar 22, 2018
    Last edited: Dec 24, 2018
    -snip-
     
  20. GodHand

    GodHand MDL Addicted

    Jul 15, 2016
    534
    926
    30
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...