Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RDPパスワードが何らかの値に等しいときにWindowsを(自動的に)再起動する方法は?
例えば :
のパスワードRDP == "hello_world"。ユーザーがこのパスワードで入力すると、Windows は通常どおり動作します。しかし、password == 'bye_world'Windowsが再起動する場合。
RDP == "hello_world"
password == 'bye_world'
@Da_smokesが提案したように、バッチファイルを使用できます
set /p password=Enter rdp password: if "%password%"=="hello_world" mstsc /whatever you want to do if "%password%"=="bye_world" shutdown /s /t 0 /f