This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 1.0 | |
<# | |
.SYNOPSIS | |
Disable Office Telemetry Agent and other data collection | |
.DESCRIPTION | |
Disable Office Telemetry Agent and other data collection and Block Macros in files downloaded from the Internet. | |
Makes Office less spying on us... | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sc delete DiagTrack | |
sc delete dmwappushservice | |
sc config diagnosticshub.standardcollector.service start= disabled | |
sc config WMPNetworkSvc start= disabled | |
sc config AdobeARMservice start= disabled | |
schtasks /Change /DISABLE /TN "Adobe Acrobat Update Task" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
NAME | |
Debloat-Windows10.ps1 | |
DESCRIPTION | |
Debloats and customizes Windows 10 Enterprise N LTSB. | |
It changes your privacy options in the settings app and disables scheduled tasks and services that are there | |
to gather information about you. It also tweaks the registry to customize settings, make your font display properly | |
on DPI scaling 125% and disable OneDrive completely. Windows Features are also disabled, such as Internet Explorer | |
and XPS Viewer, while others are enabled such as .NET framework 3.5. On top of it all, it appends new lines to your | |
hosts file that block Microsoft from collecting data on you, as well as enables or disables local policies to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -RunAsAdministrator | |
#Requires -Version 3.0 | |
#References: | |
#Getting Started with Nano Server <https://technet.microsoft.com/en-us/library/mt126167.aspx> | |
#Quick Guide - Deploying Nano Server using PowerShell <http://deploymentresearch.com/Research/Post/479/Quick-Guide-Deploying-Nano-Server-using-PowerShell> | |
param ( | |
#[ValidateScript({ Test-Path $_ })] | |
$ConvertWindowsImageScriptPath = 'D:\work\NanoServerSetup\Convert-WindowsImage.ps1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A launcher for your steam games. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Cleaner = { | |
run: function(from, to, interval) { | |
var fso = new ActiveXObject("Scripting.FileSystemObject"); | |
var iter = new Enumerator(from.files); | |
var ATTR_HIDDEN = 2; | |
var ATTR_ALIAS = 64; | |
// WScript.Echo(recycle); | |
var now = new Date(); | |
var limit = new Date(); | |
limit.setTime(now.getTime() - interval * 24 * 60 * 60 * 1000); |
NewerOlder