为什么绕过执行策略会破坏我的脚本?



我有一个脚本,它将ISO复制到C:temp,然后挂载ISO并将驱动器号存储在一个变量中,用于在挂载的驱动器上执行文件。我是这样做的:

$mountinfo = Mount-DiskImage -ImagePath $ctempiso
$driveletter = (($mountinfo | Get-volume).driveletter)
$installpath = "${driveletter}:setup.exe"
$scriptblock = [scriptblock]::create($installpath)
Invoke-Command -ScriptBlock $scriptblock

如果我手动将执行策略设置为无限制,然后执行我的PowerShell脚本,所有这些都可以正常工作。

为了避免必须设置执行策略,我在以管理员身份运行的批处理文件中使用以下命令:

PowerShell.exe -ExecutionPolicy Bypass -File \server.contoso.localsharetest.ps1

当我运行批处理文件时,它无法存储驱动器号并返回一个错误,它无法执行${驱动器号}:setup.exe

我想我的第一个问题是为什么我的脚本工作在第一个方法,而不是第二个?

其次,有没有其他方法可以绕过执行策略,让我的脚本像我想要的那样运行?

我发现问题了…这个神奇的词是"- passthr& quot;,它在我的代码中丢失了。

$mountinfo = Mount-DiskImage -ImagePath $ctempiso -Passthru 
$driveletter = (($mountinfo | Get-volume).driveletter) 
$installpath = "${driveletter}:setup.exe"  
$scriptblock = [scriptblock]::create($installpath) 
Invoke-Command -ScriptBlock $scriptblock 

相关内容

  • 没有找到相关文章

最新更新