For system, network and cloud administrators
In order for PowerShell scripts to be run, a less restrictive policy must be set. Like “Remote signed”, for example. In order to change the current PowerShell execution script policy to remote signed for the current user, type:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
In order to determine the current PowerShell script execution policy type:
Get-ExecutionPolicy -List
Within a PowerShell session type:
$PSVersionTable.PSVersion
or
pwsh -ver
smartmontools?The smartmontools package contains two utility programs (
— Official description from smartmontools.orgsmartctlandsmartd) to control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (SMART) built into most modern ATA/SATA, SCSI/SAS and NVMe disks. In many cases, these utilities will provide advanced warning of disk degradation and failure.