获取会议记录并使用 SendKeys 输出

Get Minutes and output them with SendKeys

这是我第一次编写脚本,我想从小处着手。 我的目标很简单:获取当前时间(Get-Date -Format mm)并使用 SendKeys 输出该 2 位数字作为击键。

问题是,我不知道如何将 2 位数字输出转换为 object 以供 "SendKeys" 输出。

不确定这里的完整要求是什么,但您可以将会议记录发送到记事本,如下所示

Add-Type -AssemblyName microsoft.VisualBasic
Add-Type -AssemblyName System.Windows.Forms
$secs = Get-Date -Format mm
notepad

start-sleep -Milliseconds 500

[Microsoft.VisualBasic.Interaction]::AppActivate("notepad")

[System.Windows.Forms.SendKeys]::SendWait($secs)

首先使用 ToString() 方法将日期时间结果转换为字符串,如果您在发送时遇到问题,这里是将其发送到记事本的完整示例:

## Find all Active Windows Titles
$windows=Get-Process | Where-Object {$_.MainWindowTitle -ne ""} | Select-Object MainWindowTitle
## Find Specific name 
$WindowTitle=($windows | ? {$_ -match "Notepad"} ).MainWindowTitle
## Add Type and Focus Activate the Window
$wshell = New-Object -ComObject wscript.shell
$wshell.AppActivate($WindowTitle)
## Send Keys
$wshell.SendKeys((Get-Date -Format mm).ToString())