Skip to content

Instantly share code, notes, and snippets.

View rossarioking's full-sized avatar

Rossario King rossarioking

  • Dublin
View GitHub Profile
@rossarioking
rossarioking / Download RSAT Tools for Windows 10 1809_1903.ps1
Created October 6, 2019 23:51
Download RSAT Tools for Windows 10 1809_1903 #PowerShell
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
@rossarioking
rossarioking / Enable Dark Mode For Windows Explorer.ps1
Last active October 6, 2019 23:48
Enables Dark Mode For Windows Explorer in Windows 10 #PowerShell
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0
@rossarioking
rossarioking / WindowsUpdatesByPassWSUS.ps1
Last active March 28, 2025 20:26
PowerShell Script to Bypass Local WSUS Server and Pull Updates Straight from the Internet. #PowerShell
# 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
@rossarioking
rossarioking / AWS_IAM_Users_And_Groups.txt
Last active October 2, 2019 21:24
Creating an IAM User and Security Group #AWS
\\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