gpt4 book ai didi

电源外壳 : Accessing shared drive from remote server

转载 作者:行者123 更新时间:2023-12-02 23:27:38 31 4
gpt4 key购买 nike

我正在尝试在我的 Powershell 脚本中访问共享驱动器 vai 远程服务器。我的代码如下:

$bypass1 = "config"
$bypass2 = "web.config"
$Username = "test\newtest"
$Password = "xxxxxxxxx"
$srv = "xxx.xxx.xxx.xxx"

$securePassword = ConvertTo-SecureString -AsPlainText -Force $Password
$cred = New-Object System.Management.Automation.PSCredential $Username, $securePassword
$session = New-PSSession -ComputerName $srv -port 22 -Credential $cred
Invoke-Command -Session $session -ScriptBlock {
$computer = "xxx.xxx.xxx.xxx"
test-path \\$computer\netlog\php
Get-ChildItem \\$computer\netlog\
}
Remove-PSSession -Session $session

当我尝试从服务器上的远程桌面连接访问共享时,它正在工作,但通过 powershell 它抛出以下错误。
False
Cannot find path '\\xxx.xxx.xxx.xxx\netlog\' because it does not exist.
+ CategoryInfo : ObjectNotFound: (\\xxx.xxx.xxx.xxx\netlog\:String) [Get-Ch
ildItem], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetChildItemCom
mand
+ PSComputerName : xxx.xxx.xxx.xxx

我有 Powershell 4,远程服务器是 windows 2008 R2。

问候,
Vj

最佳答案

您是否尝试访问以下路径 \\xxx.xxx.xxx.xxx\netlog\本地?您有访问服务器的凭据。你还说驱动器是共享的。尝试在本地访问路径。不是通过power-shell。但是尝试老式的方式。使用 Run .如果系统提示您输入任何凭据。您可以删除与权限相关的任何问题。如果不是...您尝试访问的文件夹根本没有共享。尝试给它所需的权限。如果不是这种情况,请发表评论。

关于电源外壳 : Accessing shared drive from remote server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30122793/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com