Steve Borba

My notes, I hope they help you, feel free to comment/add to them

Windows10

Here are a few quick links to other pages:
run all bat
Old Page

I have some credit in Azure and did this testing with it, so I don’t have the option to modify the WIM before installing, so this one will be without modifying until after the install is done.

Now I want to find and get rid of some of the Built-in “apps”, so I did this:

Get-AppxProvisionedPackage -online \
    | Out-GridView -OutputMode Multiple -Title "Remove PreProvisioned Apps" \
    | Remove-AppxProvisionedPackage -online
Get-AppxPackage \
    | Out-GridView -OutputMode Multiple -Title "Remove Apps" \
    | Remove-AppxPackage -ErrorAction SilentlyContinue

For windows features, this is the command I used before:

Disable-WindowsOptionalFeature -online -NoRestart \
  -FeatureName 'SMB1Protocol','Printing-Foundation-InternetPrinting-Client', \
        'FaxServicesClientPackage','WorkFolders-Client','SearchEngine-Client-Package'

But after figuring out the one above, I thought this one would work well:

Get-WindowsOptionalFeature -Online | ? { $_.State -eq "enabled" } \
    | Out-GridView -OutputMode Multiple -Title "Select Features to Remove." \
    | Disable-WindowsOptionalFeature -Online -NoRestart

Now lets move to customizing the OS (download):

And now lets customize the profile (download)

To do/add:
— Disable Occasionally show suggestions in Start —
— Disable Windows ink
— Block Cortana from accessing internet
— Prompt to kill onedrive
— prompt to install office
— prompt to go super strict
— install apps
office
powercli/powernsx
7zip
vlc
google drive/sync
firefox
chrome
npcap
wireshark
Global Protect
Traps
sysinternal tools
— windows updates

Other notes I have till this is complete
dism /export-image /SourceImageFile:install.esd /SourceIndex:2 /DestinationImageFile:install.wim /Compress:max /CheckIntegrity

One response to “Windows10”

  1. Larry Cortez says:

    Hello buddy. Good site. I hope all is well!

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>