[Tutorial] How to avoid being forced to use online windows account on Win 11 Home (+SL)

Discussion in 'Windows 11' started by Enthousiast, Sep 11, 2021.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,273
    94,760
    450
  2. Borgin

    Borgin MDL Junior Member

    Apr 15, 2018
    84
    4
    0
    I see, but this new execsrss one is better apparently
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,273
    94,760
    450
    It's just a copy with the wmic commands replaced by vbs (i guess) for 22483+ compatibility.
     
  4. Borgin

    Borgin MDL Junior Member

    Apr 15, 2018
    84
    4
    0
    Yeah, according to author, supports Windows 11 22H2 builds (which MAS doesn't)
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,273
    94,760
    450
    22H2 = 22483+ and that is the wmic commands needed replacement by either PS or VBS.
     
  6. Borgin

    Borgin MDL Junior Member

    Apr 15, 2018
    84
    4
    0
    So will regular MAS 1.4 still work for

    *en-us_windows_11_business_editions_updated_nov_2021_x64_dvd_0bf06ee2.iso
    adc51e461c76213b28fa4de670eeea9a0bcf2dbbb72122ace4a5c67899af8adf

    Or do I need one of the newer tools, just asking because I'd rather stick with something safe than a new unknown tool.
     
  7. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,349
    7,068
    210
    It will still work for everything except for the latest development builds (and it doesn't support LTSC 2021/IoT 2021 out of the box). WMIC will most probably not be removed from the current Windows 11 branch.
     
  8. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. walibie

    walibie MDL Novice

    Oct 21, 2009
    29
    8
    0
    Install Windows 11 on local account.
    1. When you get to the Connect to the Internet window.
    2. Connect to a homespot ( Your Smartphone ) and click next
    3.You must then normally fill in your account. Now switch off homespot on your Smartphone and afterwards click on ARROW LEFT ABOVE .
    4. Here you can enter your local account without any problems
     
  10. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,756
    5,217
    120
    latest insider build, will not install unless Inter connection is active :(
    I let him 2 minuets and closed Internet connection.
    but still annoying
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,273
    94,760
    450
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,273
    94,760
    450
  13. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    #54 AveYo, Jun 2, 2022
    Last edited: Jun 4, 2022
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. fabricio simoes

    fabricio simoes MDL Junior Member

    Dec 17, 2020
    66
    13
    0
    is there a record to add to alo and offline account option in build 22621.1 22h2? Windows 11
     
  15. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,349
    7,068
    210
    The old batch file method still works:
    Code:
    @echo off
    :setacc
    set /p XLACC="Local account name: "
    if $%XLACC%==$ goto setacc
    net.exe user "%XLACC%" /add
    if errorlevel=1 goto setacc
    net.exe localgroup Administrators "%XLACC%" /add
    reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE" /va /f
    reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoLogonSID
    reg.exe delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultUserName
    net.exe user defaultuser0 /delete
    shutdown.exe -l
    :Eof
    
     
  16. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    Let's agree these entered the internet folklore, and that it does not hurt if it's there.
    You are gonna laugh, but I got people busting my balls either way - for not including them like Rufus, VirtualBox and the whole internet does.
    And may I remind you I don't really care about these, I know for a fact in certain situations LabConfig gets ignored, hence why I'm deploying this 100% bypass in MediaCreationTool.bat:
    Code:
         $b = [io.file]::ReadAllBytes($winsetup); $h = [BitConverter]::ToString($b) -replace '-'
         $s = [BitConverter]::ToString([Text.Encoding]::Unicode.GetBytes('Module_Init_HWRequirements')) -replace '-'
         $i = ($h.IndexOf($s)/2); $r = [Text.Encoding]::Unicode.GetBytes('Module_Init_GatherDiskInfo'); $l = $r.Length
         if ($i -gt 1) {for ($k=0;$k -lt $l;$k++) {$b[$i+$k] = $r[$k]}; [io.file]::WriteAllBytes($winsetup,$b)}; [GC]::Collect()
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Myrrh

    Myrrh MDL Expert

    Nov 26, 2008
    1,511
    627
    60
    Microsoft's attitude is that only "Professionals" or "Enterprises" could possibly want to run a computer not connected to the internet.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,693
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...