Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

powershell keep skype active

#The below script will trigger dot key every 60 secs

param($minutes = 60) #//Duration. Until 60 mins below script will run

$myshell = New-Object -com "Wscript.Shell"

for ($i = 0; $i -lt $minutes; $i++) {
  Start-Sleep -Seconds 60 #//every 60 secs dot key press
  $myshell.sendkeys(".")
}
Comment

PREVIOUS NEXT
Code Example
Shell :: debian install python 3 
Shell :: pip install chromedriver 
Shell :: conda install django rest framework 
Shell :: Missing essential plugin: org.jetbrains.android 
Shell :: uninstall genymotion linux 
Shell :: certbot apache site 
Shell :: how to find the ~/.zshrc file 
Shell :: npm does not support Node.js v10.19.0 
Shell :: voice recorder for ubuntu 20.04 
Shell :: snap install microsoft teams 
Shell :: ubuntu install libc6-dev-i386 
Shell :: linux failed to save insufficient permissions vscode 
Shell :: install gdal ubuntu 
Shell :: display docker networks 
Shell :: docker output ps format 
Shell :: linux give permission to folder 
Shell :: upgrade beautifulsoup version 
Shell :: install dependencies @material-ui/lab/Rating 
Shell :: Library not loaded: /opt/homebrew/opt/icu4c/lib/libicui18n.69.dylib 
Shell :: git credentials 
Shell :: git sync local branch with remote 
Shell :: how to install specific version of bootstrap using npm 
Shell :: ubuntu 20.04 uninstall imagemagick 
Shell :: find string in files linux 
Shell :: git global ignore 
Shell :: linux see battery state 
Shell :: scikit 
Shell :: uninstall cortana 
Shell :: nvm command not found 
Shell :: how to save windows spotlight images 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =