gpt4 book ai didi

powershell - 将变量插入Powershell中的Powershell字符串 block 中

转载 作者:行者123 更新时间:2023-12-02 23:38:43 25 4
gpt4 key购买 nike

如何将变量插入存储在变量中的html代码中?我在前面用$尝试的情况无法检测到。我可能会处理所有这些错误,因此非常感谢任何提示。

    $myvariable = "string"

$header =
@"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>System Report</title>
<style>
body {
padding-top: 50px;
}
.starter-template {
padding: 40px 15px;
text-align: center;
}
</style>
</head>
"@
$myevents = Get-EventLog -EntryType error -LogName application -Newest 25| Select-Object eventid,message,TimeGenerated


$myevents | ConvertTo-Html -Head $header -PreContent $body -PostContent $endhtml -CssUri C:\powershell\bootstrap.css > testing.html
invoke-item testing.html

最佳答案

在要添加值的任何HTML标记内,都可以将其包含为$($myvariable)

例如

<body>$($myvariable)</body>

关于powershell - 将变量插入Powershell中的Powershell字符串 block 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48118838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com