Refresh utility























hello friends
we all are mostly familiar with windows operating system and before starting any work on that we firstly refreshes our system by pressing F5 key....
so an idea has struck in my mind that y not i make a utility which automatically refreshes our system 90 times or more on just one click...so i just simply call F5 key by vbs and applied the loop to a desired times
here is the script:-

Set shell = CreateObject("WScript.Shell")
shell.SendKeys "{F5}"

what you have to do is:-

  • put a loop of vb
  • give condition to the loop for no. of times u have to refresh
  • finally save this code as any name with extension .vbs

now execute it and enjoy refreshing easily........


|

Read Users' Comments ( 0 )

dancing num lock lights



hello friends this is a vb script which automatically switches off/on the lights on situated on the keyboard........
some days before an idea has came into my mind to make blinking lights by using code and after applying some efforts i succeed.......


here is the code:-

set shell =Creatobject("WScript.Shell") shell.Sendkeys "{capslock}" WScript.sleep 40 shell.Sendkeys"{numlock}" WScript.sleep 50 shell.Sendkeys "{scrolllock}" WScript.sleep 60

now u have to put a vb loop to this code to execute it to a desired time for blinking. and after this put this whole code into notepad and save this with any name but with the extension .vbs

ENJOY MY CREATION


|

Read Users' Comments ( 0 )