PowerShell脚本要求输入密码并使用它来打开Excel文件

时间:2019-01-17 13:56:27

标签: excel powershell

我想创建一个脚本,该脚本将询问我密码,然后将其存储在内存中并用于打开Excel文件。 目前,我有一些代码可以用脚本中定义的密码打开excel文件(部分代码):

$password = "password"
$Workbook = $Excel.workbooks.open($currentExecutingPath2,0,0,5,$password,$password,$True)

相反,我需要使用在脚本开头输入的密码。

我发现了创建变量的代码:

$SecurePassword = Read-Host -Prompt "Enter password" -AsSecureString 

但它不在以下位置使用我的密码

$Workbook = $Excel.workbooks.open($currentExecutingPath2,0,0,5,$Securepassword,$Securepassword,$True)

我该如何解决?

0 个答案:

没有答案