1. hoxlund

    hoxlund MDL Member

    Nov 6, 2017
    112
    54
    10
    #9681 hoxlund, Feb 14, 2019
    Last edited: Feb 14, 2019
  2. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,832
    1,112
    60
    #9682 Super Spartan, Feb 14, 2019
    Last edited: Feb 14, 2019
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    754
    60
    I do much the same with my preferred settings. One thing I do is annotate. As an example:
    Code:
    :: Set boot menu to Windows 7 Style
    bcdedit /set "{current}" bootmenupolicy legacy >NUL 2>&1
    bcdedit /timeout 10 >NUL 2>&1
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,832
    1,112
    60
    What's the benefit of that?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    754
    60
    I multi-boot. I can go straight to OS I choose instead of restarting if I choose other than default.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. rayleigh_otter

    rayleigh_otter MDL Expert

    Aug 8, 2018
    1,120
    933
    60
    Great script :)
     
  7. Kacamak

    Kacamak MDL Novice

    Jun 25, 2018
    1
    0
    0
    #9688 Kacamak, Feb 15, 2019
    Last edited: Feb 15, 2019
    Should i remove features and packages before or after integrating updates into LTSB 2016 (or before and after) and should i rebuild source images inbetween, what is the process here?
     
  8. hoxlund

    hoxlund MDL Member

    Nov 6, 2017
    112
    54
    10
    readme file
     
  9. biatche

    biatche MDL Addicted

    Nov 14, 2009
    573
    144
    30
    Though.... where's MSMG..
     
  10. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    work
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. nosirrahx

    nosirrahx MDL Expert

    Nov 7, 2017
    1,293
    627
    60
    Hopefully just busy and not sick or something similar. This is a free tool so he is under no obligation to rush back.
     
  12. Krager

    Krager MDL Senior Member

    Jan 9, 2017
    396
    233
    10
    #9693 Krager, Feb 15, 2019
    Last edited: Feb 15, 2019
    I've always found that annoying the way Windows flags some file types you download from the internet or other computers as a security risk. Another impotent attempt at security they're famous for. It's like master of stating the obvious. The registry hack below disables that behavior;
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    
    Below is a Powershell script that can be used to find all previously flagged files;
    Code:
    $ErrorActionPreference = "SilentlyContinue"
    dir C:\ -Recurse | Get-Item -Stream "Zone.Identifier"
    Write-Host ""
    Write-Host "Press any key to continue ..."
    $x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
    
     
  13. Krager

    Krager MDL Senior Member

    Jan 9, 2017
    396
    233
    10
    Yeah bad on me for not adding comments. I do pay for that once in while. Good thing I'm not a programmer. I've gone back to stuff I've not worked on for a while scratching my head on it.
     
  14. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    He did say he was going to take a break.
     
  15. biatche

    biatche MDL Addicted

    Nov 14, 2009
    573
    144
    30
    Missed that one.
     
  16. AeonX

    AeonX MDL Addicted

    May 24, 2013
    798
    728
    30
    It works? Did you test?

    This registry tweak is based on a group policy that only exists at the user level so the correct one would be this:

    Code:
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,832
    1,112
    60
    this is what I use on Windows versions with no GPE and it works. Apply the tweak then reboot:

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download]
    "CheckExeSignatures"="no"
    "RunInvalidSignatures"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
    "SaveZoneInformation"=dword:00000001
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
    "LowRiskFileTypes"=".zip;.rar;.nfo;.txt;.exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov;.mp3;.m3u;.msu;.wav;"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. lovs2build

    lovs2build MDL Novice

    Jul 31, 2012
    15
    5
    0
    Hello!. Wherever I try to remove apps using remove advance apps or the others, I get error
    ToolKitHelper.exe' is not recognized as an internal or external command,
    operable program or batch file.

    I can remove apps using RemoveAppsList and RemovePkgsList.
    Windows 1809 Pro 17763.107

    Any help would be great! Thanks
     
  19. Krager

    Krager MDL Senior Member

    Jan 9, 2017
    396
    233
    10
    #9700 Krager, Feb 16, 2019
    Last edited: Feb 16, 2019