Skip to content

Instantly share code, notes, and snippets.

View hofftaylor's full-sized avatar
🚀
GO STARSHIP GO!

Taylor Hoff hofftaylor

🚀
GO STARSHIP GO!
View GitHub Profile
@macprince
macprince / Manifesto.txt
Last active March 19, 2024 23:46
My IT Manifesto
I will work with you to figure out what the thing is that you need,
I will get the thing ordered for you,
I will unbox the thing and set it up for you,
I will help you get started using the thing,
I will maintain the thing in proper working order for you,
I will troubleshoot the thing for you,
I will fix the thing for you (if I can, or find someone who can if I can't),
I will properly dispose of the thing for you when it's no longer useful,
I will replace the thing with another, possibly better thing when the time comes.
@ThaddeusAid
ThaddeusAid / decrapifier.ps1
Created October 7, 2016 22:08
Windows 10 Decrapifier
write-Host "*******Decrapifying Windows 10...*******"
write-Host "***Removing App Packages...***"
#I recommend running this script on a fresh install, though it should work fine anyways. Should ;)
#This part removes all the apps. By default, it removes every except the calculator and the store. To remove all apps, comment out this part...
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.WindowsCalculator*"} | Remove-AppxPackage
Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.WindowsCalculator*"} | Remove-AppxProvisionedPackage -online