Windows 10 build 1809 + LTSC Privacy and Telemetry components

im certain garlin has mentioned firewall and windows activation(related to MT_'s project), which item would i have to keep for windows activation?
 
I use this tool for firewall configuration. also this command to block or unblock every exe in a folder.

Code:
cd "CD TO A EMTPY FOLDER THAT YOU ARE SURE EXISTS, OR YOU CREATED. JUST TO BE SURE IF DESIRED FOLDER IS NOT THERE OR ELSE COMMAND WILL BLOCK RANDOM THINGS, YOU CAN EVEN MAKEDIR BEFORE THIS COMMAND MAYBE..." >Nul 2>&1
cd "CD TO THE DESIRED FOLDER U WANT TO BLOCK OR UNBLOCK*" >Nul 2>&1
for /R %%a in (*.exe) do (
netsh advfirewall firewall delete rule name="Allowed %%a" >Nul 2>&1
netsh advfirewall firewall delete rule name="Blocked %%a" >Nul 2>&1
netsh advfirewall firewall add rule name="Allowed %%a" dir=out action=allow profile=any program="%%a" >Nul 2>&1
netsh advfirewall firewall add rule name="Allowed %%a" dir=in action=allow profile=any program="%%a" >Nul 2>&1
)

Change action=allow to action=block to block instead of allowing. or remove allow block commands to remove command u created.
 

Attachments

  • Firewall App Blocker.rar
    925.2 KB
Last edited:
While GPO settings can be exported to keys, using a GPO collects all your policy decisions in one place and makes it easier to audit. The templates provide explanations for what the key values should be. Sometimes the right one is actually "not" the "do not" setting.

Plus "gpupdate /force" will reset unknown changes back to a known state.

If you prefer keys, MS offers the LGPO tool to export policy files as their reg equivalents.
 
putting this on hold while i go through everything i got so far.
i want to check the options during setup, find their policy, their registry settings then find those options in ntlite so i can reg/cmd files and a preset.xml for beginners. thank you so far guys :)
 
ditditdit://docs.microsoft.com/en-us/windows/privacy/windows-10-and-privacy-compliance
aha! they are the ones you get during setup
excellent-bill-and-ted.gif

i was looking for those
 
so i got all the ntlite privacy settings but there are more with other tools, might have to combine their outputs.
 
garlin Excellent, thank you. Ive got them here somewhere but my storage is all s--t order :rolleyes:. I want the setup lot 1st, i can move onto the rest when ive got an install running. I want to drop windows 7 :eek:.
 
Last edited:
Back
Top