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
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?
Hopefully just busy and not sick or something similar. This is a free tool so he is under no obligation to rush back.
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")
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.
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
this is what I use on Windows versions with no GPE and it works. Apply the tweak then reboot: Spoiler: Disable File Protection for downloaded files.reg 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;"
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