मैंने विंडोज़ 2008 सर्वर में उपयोगकर्ताओं को सूचीबद्ध करने के लिए निम्नलिखित क्वेरी का उपयोग किया है, लेकिन असफल रहा और नीचे त्रुटि मिली।
$server='client-pc-1';$pwd= convertto-securestring 'password$' -asplaintext -
force;$cred=new-object -typename System.Management.Automation.PSCredential -argumentlist 'Administrator',$pwd; invoke-command -computername $server -credential
$cred -scriptblock {Get-ADUser -Filter (enabled -ne $true)}
अपवाद नीचे दिया गया है ... क्या कोई मुझे इसे हल करने में मदद कर सकता है?
The term 'Get-ADUser' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct
and try again.
+ CategoryInfo : ObjectNotFound: (Get-ADUser:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException