无法与 Powershell 共享文件夹
Can't share Folder with Powershell
我正在尝试使用 Powersherll 在文件夹上创建共享,但它不起作用,我也不知道为什么。我正在尝试与此命令共享它:
New-SmbShare -Name "$($Username) Share" -Path "$($StandardPath)$($Username)\home\" -ChangeAccess "Labor$($Username)"
但我总是得到这个错误:
New-SmbShare : The system cannot find the file specified.
At C:\Users\ewzadmin\Desktop\AddADUsers.ps1:55 char:9
+ New-SmbShare -Name "$($Username) Share" -Path "$($StandardPat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (MSFT_SMBShare:ROOT/Microsoft/Windows/SMB/MSFT_SMBShare) [New-SmbShare], CimException
+ FullyQualifiedErrorId : Windows System Error 2,New-SmbShare
我不明白为什么我想分享文件夹的时候他却要分享文件...
好的,我确实在我的脚本中找到了问题。这是因为我已经在使用 \192.168.1.32\users$username\
路径来创建文件夹。但是因为我没有共享文件夹从未创建...
我很垃圾
我正在尝试使用 Powersherll 在文件夹上创建共享,但它不起作用,我也不知道为什么。我正在尝试与此命令共享它:
New-SmbShare -Name "$($Username) Share" -Path "$($StandardPath)$($Username)\home\" -ChangeAccess "Labor$($Username)"
但我总是得到这个错误:
New-SmbShare : The system cannot find the file specified.
At C:\Users\ewzadmin\Desktop\AddADUsers.ps1:55 char:9
+ New-SmbShare -Name "$($Username) Share" -Path "$($StandardPat ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (MSFT_SMBShare:ROOT/Microsoft/Windows/SMB/MSFT_SMBShare) [New-SmbShare], CimException
+ FullyQualifiedErrorId : Windows System Error 2,New-SmbShare
我不明白为什么我想分享文件夹的时候他却要分享文件...
好的,我确实在我的脚本中找到了问题。这是因为我已经在使用 \192.168.1.32\users$username\
路径来创建文件夹。但是因为我没有共享文件夹从未创建...
我很垃圾