我尝试使用this帖子的代码。
当我直接在PowerShell终端上使用此代码时,它可以正常运行。
Add-Type -AssemblyName presentationCore
$filepath = "C:\Temp\test\Wildlife.wmv"
$wmplayer = New-Object System.Windows.Media.MediaPlayer
$wmplayer.Open($filepath)
Start-Sleep 2
$duration = $wmplayer.NaturalDuration.TimeSpan.Seconds
$wmplayer.Close()
start playing
$proc = Start-process -FilePath wmplayer.exe -ArgumentList $filepath -PassThru
但是当我在.bat文件上运行代码时,会出现一个cmd窗口并在几秒钟内消失,无需进一步操作。
如果我在CMD上运行.bat文件,则会出现以下错误:
.bat文件中插入的代码是:
Add-Type -AssemblyName presentationCore
$filepath = [uri] "C:\Users\??????\Desktop\small.mp4"
$wmplayer = New-Object System.Windows.Media.MediaPlayer
$wmplayer.Open($filepath)
Start-Sleep 2 # This allows the $wmplayer time to load the audio file
$duration = $wmplayer.NaturalDuration.TimeSpan.TotalSeconds
$wmplayer.Play()
Start-Sleep $duration
$wmplayer.Stop()
$wmplayer.Close()
如果你能帮助我解决这个问题,我将非常感激。
感谢。
答案 0 :(得分:0)
您正在尝试在.bat文件中运行PowerShell命令(因此PowerShell引擎未用于执行代码,因此命令失败)。
您需要将脚本另存为.ps1文件,然后通过命令行的完整路径名或通过更改到脚本所在的目录并输入以下命令来执行:
.\scriptname.ps1
其中scriptname是您保存文件的名称。
如果要通过.bat文件执行脚本,仍需要将其保存为.ps1,然后使用以下内容创建.bat文件:
Powershell.exe -File C:\path\to\my\script\myscript.ps1
显然相应地纠正了路径。请注意,以这种方式运行脚本没有任何优势,但是您可能使用.bat文件的一个原因是,如果您需要更改执行策略以允许脚本执行(我认为您不会这样做),如下所示:
Powershell.exe -executionpolicy unrestricted -File C:\path\to\my\script\myscript.ps1