ログイン時、以下の形式にすればOK
ユーザー名:AzureAD\username@example.com
AzureAD\メールアドレス
パスワード:上記のメールアドレスのパスワード
以下の2ファイルは同じフォルダに保存されている前提。
start.batをダブルクリックするだけで、ps1が実行されるようになる。
@echo off rem ps1ファイルをそのまま呼び出せるようにするため、「-ExecutionPolicy Bypass」を指定する powershell -ExecutionPolicy Bypass -File "%~dp0main.ps1" pause
# 現在日時を表示 Write-Host "PowerShellを実行しました! $(Get-Date -Format 'yyyy/MM/dd HH:mm:ss')"
You can easily automate routine computer tasks.
Start EasyReplayWindows and click the “Start Recording” button.
Then operate your computer as you normally would.
After recording is complete, in “AutoPlay Settings”, specify the time and day you want it to run.
The recorded content will now be executed automatically every time.
It’s very easy to use, so please give it a try!
You can use it for free for one month.
Once you have confirmed that it works without any problems, please purchase it from the link below.
*Refunds are not available after purchase. Please check the operation beforehand.
*Automatic payment is made every month. If you wish to cancel the renewal, please contact us by email (it takes several days to process the cancellation, so please contact us earlier than the next renewal date.)
いつものパソコンの定型作業を簡単に自動化できます。
EasyReplayWindowsを起動し、「記録開始」ボタンをクリックします。
あとは普通にパソコンの操作を行います。
記録完了後、「自動再生設定」にて、実行したい時間と曜日を指定します。
これで、記録した内容が毎回自動で実行されるようになります。
操作はとても簡単ですので、一度お試しください!
1か月間は無料にてご利用できます。
問題なく動作することが確認できましたら、以下からご購入をお願いいたします。
※ご購入後の返金はできません。事前に動作確認をお願いいたします。
※1か月ごとの自動支払いになります。更新をキャンセルする場合は、メールにてご連絡ください(キャンセル処理までに数日かかりますので、次回更新日よりも早めにご連絡ください。)
Microsoft.Web.WebView2.WinForms.WebView2の以下の赤枠部分を非表示にする。
次のコードのように、非表示にしたいアイコンを複数指定可能。
webView.CoreWebView2.Settings.HiddenPdfToolbarItems =
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.ZoomOut /*縮小*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.ZoomIn /*拡大*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.FitPage /*幅に合わせる*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.Rotate /*回転*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.PageLayout /*ページ表示*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.Search /*検索*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.Save /*上書き保存*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.FullScreen /*PDF全画面表示を入力する*/ |
Microsoft.Web.WebView2.Core.CoreWebView2PdfToolbarItems.MoreSettings/*設定など*/;