在另一台计算机的回收站中列出文件

时间:2019-10-15 08:07:27

标签: powershell recycle-bin

我正在使用此PowerShell代码获取一个txt文件,其中包含回收站中所有文件的原始位置(从Listing files in recycle bin获取):

col1   col2  final
56in   5      5in
78c>t  10    10c>t

,效果很好。 现在的问题是,我被要求从计算机A启动此.ps1文件,以将文件获取到计算机B的回收站中(例如\ 172.00.00.00),放入\ 172.00.00.00 \ folder并启动一个cmd启动该.ps1文件的文件。

我已经设置

(New-Object -ComObject Shell.Application).NameSpace(0x0a).Items()|select @{n="OriginalLocation";e={$_.ExtendedProperty("{9B174B33-40FF-11D2-A27E-00C04FC30871} 2")}},Name| export-csv -delimiter "\" -path C:\Desktop\file_list_$(get-date -f yyyyMMdd).txt -NoTypeInformation

(gc C:\Desktop\file_list_$(get-date -f yyyyMMdd).txt | select -Skip 1)| % {$_.Replace('"','')}| set-content C:\Desktop\file_list_$(get-date -f yyyyMMdd).txt

但是如何告诉它检查计算机B的回收站?

谢谢!

1 个答案:

答案 0 :(得分:0)

将代码包装为简单的迷你函数,并在远程传递计算机名和系统凭据的情况下调用它。如果您使用的是企业管理员,则无需通过认证,它将使用Windows身份验证连接到远程系统。

$scriptblock = {
    function Get-RecycleBinItems 
    {
        (New-Object -ComObject Shell.Application).NameSpace(0x0a).Items() |
            Select-Object Name, Size, Path
    }
    Get-RecycleBinItems
}

Invoke-Command -ComputerName $computer -ScriptBlock $scriptblock 

要传递凭据,可以使用:

Read-Host -assecurestring | convertfrom-securestring | out-file C:\path\username-password-encrypted.txt
$username = 'domain\username'
$password = 'password' | convertto-securestring
$creds = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $password
Invoke-Command -ComputerName Hostname -ScriptBlock $ScriptBlock -Credential $creds

注意:我期望已配置PSRemoting。如果未配置,请确保先配置PSRemoting。

希望有帮助。