AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-235518

software is fun's questions

Martin Hope
software is fun
Asked: 2014-12-19 07:03:26 +0800 CST

csvde 根据 SamAccountName 查找 1 个用户

  • 2

我想使用 csvde 根据 SamAccountName 查找 1 个用户,并将有关该人的所有详细信息导出到 CSV 文件。

我遇到的问题是按 SamAccountName 过滤

csvde -f search.txt -p subtree -l SamAccountName,CN,Distinguedname -r (&(objectClass=User)(SamAccountName=jon.doe))

我收到一条错误消息,说它不知道 SamAccountName 是什么

我需要它从命令行运行(请不要使用 powershell 或 vbscript)

active-directory
  • 1 个回答
  • 460 Views
Martin Hope
software is fun
Asked: 2014-08-06 08:25:07 +0800 CST

如何使用 PowerShell 捕获异常

  • 5

我收到这个错误。

Get-WmiObject : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
At F:\Code\powershell\network_shutdown\TurnNetworkOff.ps1:19 char:26
+             Get-WmiObject <<<<  -computername $computer Win32_NetworkAdapter -filter "AdapterTypeId
=0" | % {
    + CategoryInfo          : InvalidOperation: (:) [Get-WmiObject], COMException
    + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand

这是我的代码

#Define variables used in this script
$namespace = "root\WMI"

$array = @()
$exceptionarray = @()

$computerlist = Get-Content F:\Code\powershell\network_shutdown\computer-list.csv

foreach ($computer in $computerlist) 
{
    # Main Processing Section
    # Write-Host $computer
    if((Test-Connection -Cn $computer -BufferSize 16 -Count 1 -ea 0 -quiet))
    {
        Try
        {
            #Write-Host $computer
            #Write-Host "Disable `"Allow the computer to turn off this device to save power`""
            Get-WmiObject -computername $computer Win32_NetworkAdapter -filter "AdapterTypeId=0" | % {
                $strNetworkAdapterID=$_.PNPDeviceID.ToUpper()
                Get-WmiObject -class MSPower_DeviceEnable -computername $computer -Namespace $namespace | % {
                    if($_.InstanceName.ToUpper().startsWith($strNetworkAdapterID))
                    {
                        $_.Enable = $false
                        $_.Put() | Out-Null
                    }
                }
            }

            #Write-Host "Disable `"Allow this device to wake the computer`""
            Get-WmiObject -computername $computer Win32_NetworkAdapter -filter "AdapterTypeId=0" | % {
                $strNetworkAdapterID=$_.PNPDeviceID.ToUpper()
                Get-WmiObject -class MSPower_DeviceWakeEnable -computername $computer -Namespace $namespace | % {
                    if($_.InstanceName.ToUpper().startsWith($strNetworkAdapterID)){
                        $_.Enable = $false
                        $_.Put() | Out-Null
                    }
                }
            }

            #Write-Host "Disable `"Only allow a magic packet to wake the computer`""
            Get-WmiObject -computername $computer Win32_NetworkAdapter -filter "AdapterTypeId=0" | % {
                $strNetworkAdapterID=$_.PNPDeviceID.ToUpper()
                Get-WmiObject -class MSNdis_DeviceWakeOnMagicPacketOnly -computername $computer -Namespace $namespace | % {
                    if($_.InstanceName.ToUpper().startsWith($strNetworkAdapterID)){
                        $_.EnableWakeOnMagicPacketOnly = $false
                        $_.Put() | Out-Null
                    }
                }
            }
        } Catch [Exception]
        {
            Write-Host $computer + " WMIC ERROR"
            if ($_.Exception.GetType().Name -eq "COMException") {
                Write-Host $computer + " WMIC ERROR"
            }

            $output = new-object psobject
            $output | Add-Member noteproperty PCTag $computer

            [PSObject[]]$exceptionarray += $output
        }        
    } else {
        Write-Host $computer + " OFFLINE"
        $output = new-object psobject
        $output | Add-Member noteproperty PCTag $computer

        [PSObject[]]$array += $output
    }

    $array | Export-Csv -Path F:\Code\powershell\network_shutdown\ResultsOffline.csv
    $exceptionarray | Export-Csv -Path F:\Code\powershell\network_shutdown\ResultsException.csv
}
powershell
  • 1 个回答
  • 13929 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve