The default PowerShell script execution policy in Windows blocks the third-party cmdlets (including PSWindowsUpdate commands) from running, Set-ExecutionPolicy –ExecutionPolicy RemoteSigned -force Or, you can allow module commands to run only in the current PowerShell session: Set-ExecutionPolicy -Execu...