Generic scripts to perform a diverse tasks
Install Dell Command Update
Install PowerShell Windows Update module
> Install-module PSWindowsUpdate
> Import-Module PSWindowsUpdate
> Get-command -module PSWindowsUpdate
Install Chocolatey package manager
> Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
> powershell -executionpolicy bypass -File updateDell.ps1