React Introduction: https://bit.ly/320nt9S
- Introduction
| # See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/ | |
| # See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10 | |
| # Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName | |
| Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage | |
| Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage | |
| Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar | |
| #Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage |
| /** | |
| * Main function | |
| */ | |
| function find(collection, predicate, fromIndex) { | |
| let iteratee | |
| const iterable = Object(collection) | |
| if (!isArrayLike(collection)) { | |
| collection = keys(collection) | |
| iteratee = (key) => predicate(iterable[key], key, iterable) |
| import EXIF from 'exif-js'; | |
| const hasBlobConstructor = typeof (Blob) !== 'undefined' && (function checkBlobConstructor() { | |
| try { | |
| return Boolean(new Blob()); | |
| } catch (error) { | |
| return false; | |
| } | |
| }()); |