コメントに記載されているように、マップされたドライブはユーザーごとです。値は、各ユーザーのレジストリに格納されます。ここでは、各ユーザーのHKCU:\Network
とHKCU:\Volatile Environment
(ADホーム共有からマップされたドライブ)の情報をPSRemoting経由でプルする機能があります。 PDQ展開スクリプトが失敗した理由については
function Get-MappedDrive {
[CmdletBinding(SupportsShouldProcess = $True, ConfirmImpact = 'Low')]
param (
[Parameter(Mandatory = $True,
ValueFromPipelineByPropertyName = $True,
Position = 0)]
[string[]]$ComputerName
)
begin {}
process {
if ($pscmdlet.ShouldProcess($ComputerName)) {
Invoke-Command -ComputerName $ComputerName {
New-PSDrive -Name HKU -PSProvider Registry -Root HKEY_USERS | Out-Null
Get-ChildItem HKU:\ |
ForEach-Object {Get-ChildItem "$($_.pspath)\Network" -ErrorAction SilentlyContinue} |
ForEach-Object {
[PSCustomObject]@{
User = (New-Object System.Security.Principal.SecurityIdentifier ($_.name -replace 'HKEY_USERS\\(.*?)\\.*','$1')).Translate([System.Security.Principal.NTAccount]).Value
Drive = "$((Split-Path $_.name -Leaf).ToUpper()):"
Path = Get-ItemProperty -Path $_.PSPath -Name RemotePath | Select-Object -ExpandProperty RemotePath
}
}
Get-ChildItem HKU:\ |
ForEach-Object {
if (Get-ItemProperty -Path "$($_.PSPath)\Volatile Environment" -name HOMEDRIVE -ErrorAction SilentlyContinue) {
[PSCustomObject]@{
User = (New-Object System.Security.Principal.SecurityIdentifier ($_.name -replace 'HKEY_USERS.(.*?)(\\.*|$)','$1')).Translate([System.Security.Principal.NTAccount]).Value
Drive = Get-ItemProperty -Path "$($_.PSPath)\Volatile Environment" -name HOMEDRIVE | Select-Object -ExpandProperty HOMEDRIVE
Path = Get-ItemProperty -Path "$($_.PSPath)\Volatile Environment" -name HOMESHARE | Select-Object -ExpandProperty HOMESHARE
}
}
}
Remove-PSDrive HKU | Out-Null
}
}
}
end {}
}
PowerShellスクリプトは、ファイル共有への許可なしにアカウントとして実行されていることです。 net use \\server\folder username password
または(New-Object -ComObject WScript.Network).MapNetworkDrive('Z:','\\server\folder',$false, 'username', 'password')
を使用して、異なる資格情報で共有をマップすることができます。
マッピングされたドライブは、コンピュータごとではなく、ユーザーごとです。 –