回答:
Windowの組み込みmsg
コマンドをそのように使用するのはどうですか?
msg * "Message you would like to send"
あなたのような他のパラメータを追加することができ/TIME:x
、xはあなたがメッセージを表示する秒数ですが。もちろん、msg /?
利用可能なすべてのオプションが表示されます。
これは、メッセージを表示するシステムとしてWindows XP以降を意味します。該当するOSのHome Editionをお持ちの場合は、運が悪いです。使用可能なパラメーターについては、http://ss64.com/nt/msg.htmlを参照してください。
Home Editionがある場合、次のバッチスクリプトはVBSCriptのPopUpメソッドを使用してメッセージをポップアップします。
@echo off
::See http://msdn.microsoft.com/en-us/library/x83z1d9f(v=vs.84).aspx
::for an explanation of the PopUp method
::
::Use the directory from whence script was called as working directory
set CWD=%~dp0
::Use a random file name for the temporary VBScript.
set usrmsg=%CWD%%random%.vbs
::First parameter is the timeout in seconds. 0 = wait forever
set _timeout=%~1
::Second parameter is the message, enclosed in quotes.
set _Message=%~2
::Third parameter is the title of the window, enclosed in quotes.
set _Title=%~3
::This last variable is used to display a button/icon on the window.
::Setting this to 4096 sets the window to Modal (on top of everything else)
set _nType=4160
::Create the temp script using the provided information.
ECHO Set wshShell = CreateObject( "WScript.Shell" )>%usrmsg%
ECHO wshShell.Popup "%_Message%" ^& vbCrLf, %_Timeout%, "%_Title%", %_nType%>>%usrmsg%
::Run the script.
WSCRIPT.EXE %usrmsg%
::Delete the script.
DEL %usrmsg%
::Exit the batch file
exit /b
お役に立てれば!
追加:Windows 10でこれを機能させるには、メッセージを画面上に60秒より長く表示させたい場合は、「/ time:0」を使用する必要があるとコメントでGreggが言及しています。
/TIME:0
。これは、Win10 x64 v1607 Enterprise LTSBにあります。なぜスクリプトがうまくテストされたのかと思っていましたが、タスクスケジューラに入れてもメッセージが表示されませんでした。恥ずかしいプラグイン:serverfault.com/a/931932/131761
https://www.howtogeek.com/136894/how-to-create-popup-reminders-with-no-additional-software/も参照してください。リンクが死亡した場合は、ここで要約します。
/ C TITLE [ここにあなたのタイトル]&ECHO。&ECHO。&ECHO [ここにメッセージ]&ECHO。&ECHO。&TIMEOUT [タイムアウト]
これにより、現在のウィンドウの上部に表示される、指定されたテキストのコンソールウィンドウが生成されますが、フォーカスが自動的に奪われることはありません(通常どおりに現在のウィンドウを操作し続けることができます)。
これは私が見つけた最高の解決策でした、誰かに役立つことを願っています!
msgbox
VBSで使用します。このような:
Set filesys = CreateObject("Scripting.FileSystemObject")
Set shell = CreateObject("Shell.Application")
Set wshShell = WScript.CreateObject( "WScript.Shell" )
PCName = wshShell.ExpandEnvironmentStrings( "%COMPUTERNAME%" )
msgbox "Dear user on " & PCName & vbcrlf & " " & vbcrlf & "This is a message box on top of all other windows.", &h51000, "I am msgbox"
shell.Open "C:\Users"
コード&h51000
により、メッセージボックスが常に中央に配置され、他のすべてのウィンドウの上に配置されます。
msgboxのみをスケジュールする場合は、タスクスケジューラを使用できます。メッセージをスケジュールするための組み込み関数があります。タスクスケジューラの[プログラムの開始]の場所を参照してください。
Display a Message
は非推奨で、msg
Windows 10 1703ではコマンドが機能しませんでしpowershell
た。スケジュールされたタスクからメッセージボックスを表示するために使用しています。アクションを定義するときに、これを引数として使用します。
-WindowStyle hidden -Command "& {[System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms'); [System.Windows.Forms.MessageBox]::Show('<message body here>','<window title here>')}"
それは醜いAFですが、動作します。
powershell
ソリューションを使用すると、メッセージボックスが表示されます。msg
ソリューションを使用すると、コメントで述べたように何も起こりません。
powershell -WindowStyle hidden -File "<path to script>"
が、それはない仕事、それだけで動作しない-Command
ので、引数: powershell -WindowStyle hidden -Command "& '<path to script>'"
msg
?[実行]ボックスまたはコマンドプロンプトから実行しようとしても何も起こりません。