我目前正在使用PS2EXE将我的PowerShell脚本编译成可执行文件,确实非常有效!
我的问题是这个脚本依赖于其他文件/文件夹。因此,我不想将这些文件与exe一起使用,而是将这些文件与PS脚本一起“包装”到exe中。运行exe将运行PS脚本然后提取这些文件/文件夹并将它们移出exe ...
这甚至可能吗?
感谢您的帮助
答案 0 :(得分:1)
需要外部文件的Powershell脚本可以通过在其中嵌入数据来自我维持。通常的方法是将数据转换为Base64格式并将其保存为Powershell脚本中的字符串。在运行时,通过解码Base64数据来创建新文件。
# First, let's encode the external file as Base64. Do this once.
$Content = Get-Content -Path c:\some.file -Encoding Byte
$Base64 = [Convert]::ToBase64String($Content)
$Base64 | Out-File c:\encoded.txt
# Create a new variable into your script that contains the c:\encoded.txt contents like so,
$Base64 = "ABC..."
# Finally, decode the data and create a temp file with original contents. Delete the file on exit too.
$Content = [Convert]::FromBase64String($Base64)
Set-Content -Path $env:temp\some.file -Value $Content -Encoding Byte
博客上的完整示例代码is avalable。