How to restore the Microsoft Store and built-in apps after an Intune Fresh Start or Autopilot Reset

This page summarizes the projects mentioned and recommended in the original post on /r/Intune

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • LTSC-Add-MicrosoftStore

    Add Windows Store for LTSC

  • Please note that the script is a bit more complex than it needs to be; I wrote it in such a way that you could point to any zip file online and extract it and run the scripts inside; this way you can easily package your own scripts and run them all at once if you want to. (Here is the app my script uses that installs the store: https://github.com/kkkgo/LTSC-Add-MicrosoftStore)

  • LTSC-Add-MicrosoftStore

    Discontinued Add Windows Store for LTSC [Moved to: https://github.com/kkkgo/LTSC-Add-MicrosoftStore] (by lixuy)

  • # This script will download the URL you specify, extract the file, then run the files you request # Variables that require input $packageURL = "https://github.com/lixuy/LTSC-Add-MicrosoftStore/archive/2019.zip" # Pre-set variables (optional to change) $fileLocation = "C:\Windows\Temp" $zipName = "scripts.zip" $zipFolder = "scripts" $outpath = "$fileLocation/$zipName" # Create Hash Table - Edit the extensions to include any extensions you want to run $scriptExtensions= @( 'cmd' 'ps1' ) # Download Zip folder to temp location Invoke-WebRequest -Uri $packageURL -OutFile $outpath # Extract Zip folder Expand-Archive -Path "$fileLocation/$zipName" -DestinationPath "$fileLocation/$zipFolder" # Search for all cmd files and run the script $n = 1 foreach($scriptExtension in $scriptExtensions) { # Search for all cmd files and run the script foreach($script in Get-ChildItem -Path "$fileLocation/$zipFolder" -Recurse *.$scriptExtension) { $script.FullName Write-Host "Installing script #$n" Invoke-Item $script.FullName $n++ } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • DiligentGraphics: Open-source cross-platform rendering middleware

    1 project | news.ycombinator.com | 29 Apr 2024
  • Windows 11 Start menu ads are now rolling out to everyone

    3 projects | news.ycombinator.com | 24 Apr 2024
  • Tiny11builder – build a trimmed-down Windows 11 image with PowerShell

    1 project | news.ycombinator.com | 23 Apr 2024
  • tiny11builder

    1 project | news.ycombinator.com | 21 Apr 2024
  • Ask HN: How will I make Windows 10 collect less telemetry?

    1 project | news.ycombinator.com | 17 Apr 2024