Findings about Windows 10 Releases

Discussion in 'Windows 10' started by nexus76, Oct 1, 2014.

  1. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,067
    Likes Received:
    55,424
    Trophy Points:
    340
    Yes

    Education however is higher than Enterprise
     
  2. 100

    100 MDL Expert

    Joined:
    May 17, 2011
    Messages:
    1,346
    Likes Received:
    1,560
    Trophy Points:
    60
    #1442 100, Aug 12, 2016
    Last edited by a moderator: Apr 20, 2017
    Tired of the graphical logon screen or the forced lock screen? Want a console instead? :p

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\TestHooks]
    "ConsoleMode"=dword:00000001
     
  3. jose_marino

    jose_marino Guest

    How to disable sharing tab from connection and file properties? Thanks. :confused:
     
  4. cuteee

    cuteee MDL Guru

    Joined:
    Oct 13, 2012
    Messages:
    5,013
    Likes Received:
    775
    Trophy Points:
    180
    #1444 cuteee, Aug 12, 2016
    Last edited by a moderator: Apr 20, 2017
    It's not working in Hebrew.
     
  5. Painkiller

    Painkiller MDL Member

    Joined:
    Jul 28, 2009
    Messages:
    123
    Likes Received:
    62
    Trophy Points:
    10
  6. Wader8

    Wader8 MDL Novice

    Joined:
    Sep 2, 2016
    Messages:
    14
    Likes Received:
    0
    Trophy Points:
    0
    Please explain, did you used the free utilities to do this or is this your own modification?

    I'm particularly interested if this is a special theme that requires tweaking Win10?

    If this is your mod I would love to include it in my Win10 total conversion mod, and you will be credited.
     
  7. Tiger-1

    Tiger-1 MDL Guru

    Joined:
    Oct 18, 2014
    Messages:
    6,207
    Likes Received:
    7,533
    Trophy Points:
    210
    @Painkiller see mine :rolleyes: My Desktop.jpg
     
  8. Nongshim

    Nongshim Guest

    Yes, where is/are the best place/s to download themes for Win10. Possibly 1607.
     
  9. Tiger-1

    Tiger-1 MDL Guru

    Joined:
    Oct 18, 2014
    Messages:
    6,207
    Likes Received:
    7,533
    Trophy Points:
    210
  10. Painkiller

    Painkiller MDL Member

    Joined:
    Jul 28, 2009
    Messages:
    123
    Likes Received:
    62
    Trophy Points:
    10
  11. KNARZ

    KNARZ MDL Addicted

    Joined:
    Oct 9, 2012
    Messages:
    896
    Likes Received:
    475
    Trophy Points:
    30
    please stop this theme, "thats my desktop" crap.. this is about findings, other stuff can be done via PM.
     
  12. Accelerator

    Accelerator MDL Novice

    Joined:
    Mar 27, 2015
    Messages:
    14
    Likes Received:
    71
    Trophy Points:
    0
    #1452 Accelerator, Dec 24, 2016
    Last edited by a moderator: Apr 20, 2017
    New technology of DPI scaling in Windows 10 14986

    I found some interesting things in Windows 10 14986's MMC(the host process of Device Manager and Disk Management etc.). You all knows the MMC in 14986 is optimized for DPI Scaling. But it's not completely, and the most important thing is it's still DPI-unaware! How that works? Well, I already found it.

    In mmc.exe's built in manifest, there is a new declaration named "gdiScaling". This new option could make some old win32 program partially support DPI Scale.

    Yes, "Partially", seems it only support specific win32 Text API.

    I wrote a simple win32 program which uses TextOut, DrawText and ExtTextOut API to render text and tried to figure out which API will take effect. Unfortunately, I didn't get the expected result. And actually I'm not familiar with win32 programming.

    So, I decided to use some other win32 program to do the test and succeeded!

    First, I need to do registry hack to enable windows prefer to load external manifest file.
    Code:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide]
    "PreferExternalManifest"=dword:00000001
    
    Then, I choose CPU-Z to do this test. So create a file with the following content named "cpuz_x64.exe.manifest"(same as the program's file name including .exe extension and use .manifest extension):

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
    <asmv3:application>
       <asmv3:windowsSettings>
            <dpiAware xmlns="h t t p://schemas.microsoft.com/SMI/2005/WindowsSettings">false</dpiAware>
            <gdiScaling xmlns="h t t p://schemas.microsoft.com/SMI/2017/WindowsSettings">true</gdiScaling>
      </asmv3:windowsSettings>
    </asmv3:application>
    </assembly>
    
    Note: As I don't have the permission to post links, So, you need to remove those spaces in "h t t p".

    Finally, Save this file along with the program.After these done. Run the cpuz_x64.exe. It will popup an error message. But you can ignore it and continue. And here is the screenshot of the effect(clearly font rendering at DPI 200%):cool::
    CPU-Z EN GDI Scale.png


    So, this is the new technology of DPI scaling in Windows 10 14986, you can try to use this to improve some old win32 program's DPI Scaling effect. But notice, this technology is not perfect, it only support some program. And, some language may has rendering problem(for example, Chinese edition of CPU-Z). If this manifest not work for the program, you can just remove the manifest file.
     
  13. Shayne

    Shayne MDL Addicted

    Joined:
    Jul 31, 2009
    Messages:
    752
    Likes Received:
    181
    Trophy Points:
    30
    Here is a finding I find totally weird for an OS that is to be at this point in it maturity. I was backing up over the holidays when one of my internal drives crashed, it was a 3 TB data drive and during copy it just froze up. Rebooted only to find that windows 10 would no longer boot on the system SSD drive. I had to unplug the defective data drive in order for the system drive to boot. The data drive was dead but I could not diagnose this in windows 10 since the system would not boot with it attached. Now that is something real special and should help a system be resilient. Ended up using testdisk to retrieve the raw data I needed after plugging it in through a USB enclosure. Top notch M$.

    Regards
     
  14. Tiger-1

    Tiger-1 MDL Guru

    Joined:
    Oct 18, 2014
    Messages:
    6,207
    Likes Received:
    7,533
    Trophy Points:
    210
    #1454 Tiger-1, Feb 16, 2017
    Last edited: Feb 16, 2017
    @100
    yep thanks a lot dude for your amazing contribution and very simple also :clap:still as I have password same on local account I make this tweak\restart and when start again I open netplwiz and unclick option with password and restarted again to see result so when Windows start show one little window(console) Welcome lol finally NO MORE lock screen congrats dude sorry for delay:worthy::worthy::worthy:
     
  15. lobo11

    lobo11 TOMAHAWK CHOP

    Joined:
    Feb 16, 2012
    Messages:
    6,587
    Likes Received:
    5,350
    Trophy Points:
    210
    #1455 lobo11, Feb 16, 2017
    Last edited by a moderator: Apr 20, 2017
    Man, this is really cool, mine did not have lockscreen before, just welcome for about 1 second, now boots straight to desktop, thanks dude/dudette:worthy:
     
  16. acyuta

    acyuta MDL Expert

    Joined:
    Mar 8, 2010
    Messages:
    1,669
    Likes Received:
    385
    Trophy Points:
    60
  17. v72dd

    v72dd MDL Senior Member

    Joined:
    Nov 20, 2016
    Messages:
    445
    Likes Received:
    77
    Trophy Points:
    10
    It's nice but not full screen. :/
     
  18. lobo11

    lobo11 TOMAHAWK CHOP

    Joined:
    Feb 16, 2012
    Messages:
    6,587
    Likes Received:
    5,350
    Trophy Points:
    210
    Mine is :p
     
  19. lobo11

    lobo11 TOMAHAWK CHOP

    Joined:
    Feb 16, 2012
    Messages:
    6,587
    Likes Received:
    5,350
    Trophy Points:
    210
  20. maestrosir

    maestrosir MDL Junior Member

    Joined:
    Aug 1, 2016
    Messages:
    65
    Likes Received:
    43
    Trophy Points:
    0
    #1460 maestrosir, Apr 13, 2017
    Last edited by a moderator: Apr 20, 2017