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
| Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online |
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
| Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 |
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
| # Stop the Windows Update service | |
| Stop-Service -Name wuauserv | |
| # Remove the registry key | |
| Remove-Item HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate -Recurse | |
| # Start the Windows Update service | |
| Start-Service -name wuauserv |
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
| \\Create an AWS IAM User Account | |
| aws iam create-user --user-name Robert | |
| \\Generates an Access & Secret Access Key for User Account | |
| aws iam create-access-key --user-name Robert | |
| \\Creates an IAM Security Group | |
| aws iam create-group --group-name Administrators | |
| \\Adds User account to IAM Group |
NewerOlder