Win10-Initial-Setup-Script
Win10-Initial-Setup-Script copied to clipboard
PowerShell script for automation of routine tasks done after fresh installations of Windows 10 / Server 2016 / Server 2019
[SetVisualFXPerformance](https://github.com/Disassembler0/Win10-Initial-Setup-Script/blob/master/Win10.psm1#L2222 ) is supposed to disable transparency but there isn't any property defined to do so.. I'm kind of inexperienced that's why I'm not opening a PR but I think...
Made self function dont know this correct way. # Disable Print Spooler Function DisablePrintSpooler { Write-Output "Stopping and disabling Print Spooler service..." Stop-Service "Spooler" -WarningAction SilentlyContinue Set-Service "Spooler" -StartupType Disabled...
Defender lets you set Attack Surface Reduction rules both via GPO or via Set-MpPreference. A list of the rules can be found [here](https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-atp/attack-surface-reduction#attack-surface-reduction-rules). Current rules: - Block executable content from...
Just noticed that the StandardProfile regkey only disables the firewall in private and public scope. It is possible to create a Key named "DomainProfile" under HKLM:\Software\Policies\Microsoft\WindowsFirewall\DomainProfile Should look something like...
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double quotation marks ("&") to pass it as part of a...
It's almost impossible to know what the different settings does without having to google or search the sources. I suggest to add a column in the **`Default.preset`** file that have...
The NumLock function didn't work for me. I has to change the data type as REG_SZ with the value "2"
Hi! Thank you for this fantastic tool! I have been looking for something like this for a long time! However, seeing that I often have to operate on other peoples...
Hi, Is it possible to add an open command window here to the context menu? I'm on 20h1 and the old ways aren't working https://helpdeskgeek.com/how-to/open-command-prompt-folder-windows-explorer/ BTW the SetWinXMenuCmd also didn't...