dell-democenter

Prerequisites

We need to prepare Host to install the Powershell Modules from Powershell Gallery.

Start a Powershell Session

Click on the start Button (Windows Icon) in the lower lect of the screen
image

Type Powershell
image

Click on the Powershell icon. Powershell windows should open.

image

To access the PowerShell Gallery, you must use Transport Layer Security (TLS) 1.2 or higher. Use the following command to enable TLS 1.2 in your PowerShell session.
We also set the dell-democenter repository on github as trusted, s we can download and run scripts in an adavaced session later. Paste the following into the powershell window:

[Net.ServicePointManager]::SecurityProtocol =
    [Net.ServicePointManager]::SecurityProtocol -bor
    [Net.SecurityProtocolType]::Tls12
$Zonemaps = ("HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains")
$DOMAIN=New-Item -Path $Zonemaps -Name "github.io\dell-democenter" -Force
$DOMAIN | New-ItemProperty -Name "https" -PropertyType DWORD -Value  "2"
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force

And hit enter
Powershell should now run with TLS 1.2
image

Install the PPDM-pwsh Powershell Module from the Powershell Gallery using the Command Install-Module

Install-Module ppdm-pwsh -MinimumVersion 19.14.20.76 -Force

Show the Module is installed using:

Get-Module -ListAvailable PPDM-pwsh

*Note: The Version might already be a newer one image

To see all commands the Module provides, type:

Get-Command -Module PPDM-pwsh

image

If you ever need to update the Module to a newer Version, run

Remove-Module ppdm-pwsh -force 
Uninstall-Module ppdm-pwsh -AllVersions
Install-Module ppdm-pwsh -MinimumVersion 19.14.20.76 -Force

TLDR

TLDR

«IndexThis Concludes Module 0 »Module 1