2018年9月20日木曜日

FileMakerの全てのウインドウを最小化する。(Windows)

FileMakerの全てのウインドウを最小化する。(Windows)

Windows 10
FileMaker 16, 17


Event を送信 [「aevt」;「odoc」;

powershell -windowstyle hidden -Command "$dllInfo = '[DllImport(\"user32.dll\")]public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
[DllImport(\"user32.dll\")]public static extern bool IsIconic(IntPtr hWnd);';
Add-Type -MemberDefinition $dllInfo -name NativeMethods -namespace Win32;
do{
$FMprocess=get-process FileMaker*;
foreach($proc in $FMprocess){
$hwnd = $proc.MainWindowHandle;
$IsIconic=[Win32.NativeMethods]::IsIconic($hwnd);
[Win32.NativeMethods]::ShowWindowAsync($hwnd, 2) | Out-Null;
Start-Sleep -m 100;
}
}while ($IsIconic -eq $FALSE)"
」]
※テキストへ設定

0 件のコメント:

コメントを投稿