Kasa Smart Control, Program

Enable PowerShell Script execution

Steps to enable PowerShell script execution: Open PowerShell as Administrator: Check current execution policy: Get-ExecutionPolicy Set the execution policy to allow scripts: Common choices: Example to set to RemoteSigned (Recommended): Set-ExecutionPolicy RemoteSigned
top