我正在尝试使用解决方案PowerGUI将两个单独的Powershell文件编译为单个.EXE。 它似乎支持这个功能,因为它甚至有一个名为Dependencies的按钮用于此目的。 但我无法找到如何从同一.EXE中包含的任何其他PowerShell文件引用依赖项文件的任何示例
我的主PS文件只包含以下行:
Start-Process powershell.exe -ArgumentList "-noexit -file C:\PGM\usbControl.ps1"
我想知道如何编码" C:\ PGM \ usbControl.ps1"作为.EXE包中的相对路径,并指向包含的依赖项。
感谢。
答案 0 :(得分:0)
最后我没有使用任何外部IDE,标准的PowerShell代码就可以了。嵌入代码! :) ScriptBlock是关键。
$sb = {
$query = 'SELECT * FROM __InstanceOperationEvent WITHIN 5 WHERE TargetInstance ISA ''Win32_LogicalDisk'' AND TargetInstance.DriveType=2'
Register-WmiEvent -Query $query -SourceIdentifier RemovableDiskDetection -Action {
$class = $eventArgs.NewEvent.__CLASS
$device = $eventArgs.NewEvent.TargetInstance.DeviceID
$wshell = New-Object -ComObject Wscript.Shell
switch ($class)
{
__InstanceCreationEvent {
$path = $device + '\flag\'
Write-Host '*** Checking the existence of the file $path'
if (Test-Path -Path $path)
{
$wshell.Popup('Inserted, device id: $device WITH flag', 0, 'Done', 0x1)
}
else
{
$wshell.Popup('Inserted, device id: $device WITHOUT flag', 0, 'Done', 0x1)
}
}
__InstanceDeletionEvent {
$wshell.Popup('Removed, device id: $device ', 0, 'Done', 0x1)
}
}
}
}
start-process powershell.exe -argument "-noexit -nologo -noprofile -windowstyle hidden -command $sb"
在这个很好的解决方法之后,我只是使用PS2EXE工具来编译它。
.\ps2exe.ps1 -noConsole -inputFile .\magic.ps1 -outPutFile magic.exe