Changes between Initial Version and Version 1 of jazz/20-04-24


Ignore:
Timestamp:
Apr 24, 2020, 8:31:38 PM (4 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/20-04-24

    v1 v1  
     1= 2020-04-24 =
     2
     3== Windows PowerShell ==
     4
     5* 避免遠端桌面進入螢幕保護
     6* Ref: https://www.shellhacks.com/windows-prevent-lock-screen-timeout-when-idle/
     7* Ref2: https://stackoverflow.com/questions/9794893/powershell-toggle-num-lock-on-and-off
     8{{{
     9$wsh = New-Object -ComObject WScript.Shell
     10while (1) {$wsh.SendKeys('{SCROLLLOCK}'); sleep 60}
     11}}}