上传文件到exi主机存储的powershell脚本
时间: 2024-02-06 22:09:25 浏览: 98
收集ESXI上存储信息的powershell脚本
以下是上传文件到 exi 主机存储的 PowerShell 脚本示例:
```powershell
$server = "exi_server_name" # 替换为 exi 服务器名称
$share = "exi_share_name" # 替换为 exi 共享名称
$folder = "exi_folder_name" # 替换为 exi 文件夹名称
$username = "exi_username" # 替换为 exi 用户名
$password = "exi_password" # 替换为 exi 密码
$sourceFile = "C:\path\to\file.txt" # 替换为本地文件路径及名称
$destinationPath = "\\$server\$share\$folder" # 替换为 exi 文件路径
# 创建存储目录
New-Item -ItemType Directory -Force -Path $destinationPath
# 将文件复制到 exi 存储
Copy-Item $sourceFile $destinationPath -Credential (New-Object System.Management.Automation.PSCredential($username,(ConvertTo-SecureString $password -AsPlainText -Force)))
```
注意:以上脚本需要在 PowerShell 环境中执行,且需要管理员权限。另外,需要确保 exi 主机已经开启 SMB 文件共享服务,且已经授权给指定用户访问权限。
阅读全文