将 json 中的 powershell 结果存储到 Azure 存储帐户
Store powershell result in json to Azure storage account
我需要使用 windows powershell ISE 将 powershell json 输出存储到 azure 存储帐户中。例如:“$result”是存储在存储账户
中的输出文件
我已经在我的环境中进行了测试。
首先,我们可以使用以下命令将 PowerShell JSON 输出存储在本地文件中:
$result | out-file /path/to/file
然后我们可以使用以下命令将文件从本地复制到 Azure 存储帐户:
az storage blob upload --account-name mystorageaccount --account-key 0000-0000 --container-name mycontainer --file /path/to/file --name myblob
我需要使用 windows powershell ISE 将 powershell json 输出存储到 azure 存储帐户中。例如:“$result”是存储在存储账户
中的输出文件我已经在我的环境中进行了测试。
首先,我们可以使用以下命令将 PowerShell JSON 输出存储在本地文件中:
$result | out-file /path/to/file
然后我们可以使用以下命令将文件从本地复制到 Azure 存储帐户:
az storage blob upload --account-name mystorageaccount --account-key 0000-0000 --container-name mycontainer --file /path/to/file --name myblob