issue in PDQ Deploy when I try to install the PSWindowsUpdate Module.
Hello, I'm having an issue in PDQ Deploy when I try to install the PSWindowsUpdate Module.
Exception calling "ShouldContinue" with "2" argument(s): "Windows PowerShell is in NonInteractive mode. Read and Prompt functionality is not available." At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:7455 char:8
- if($Force -or $psCmdlet.ShouldContinue($shouldContinueQueryMessag ...
-
CategoryInfo : NotSpecified: (:) [], ParentContainsErrorRecordException FullyQualifiedErrorId : PSInvalidOperationException Script is Find-Module -name "pswindowsupdate" |install-module Any Thoughts? I'm quite new to powershell. Thanks.
0
Comments
Try
Install-Module -Force
orInstall-Module -Confirm:$false
.This could also happen when you don't have other powershell modules preinstalled required for the intended operation.