Jump to content

Jacques Cartier

Member
  • Posts

    40
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Jacques Cartier reacted to BobVonBob in How to Add Google Search Option to the Right-Click context Menu in windows Explorer   
    To my knowledge no tool like that exists.
     
    Edit: This is close, an autohotkey script that will search any text you highlight on Google.
    https://superuser.com/questions/162101/is-it-possible-to-add-google-search-to-all-windows-context-menus
  2. Like
    Jacques Cartier reacted to badreg in How to make a toggle switch in batch file ?   
    Read the current priority and use a conditional statement to switch to the other condition.
     
    set processName=ScpService.exe set "WMIC_CMD=wmic process where name^='%processName%' get /format:list ^| findstr Priority" for /f "tokens=1* delims==" %%A in ('%WMIC_CMD%') do set priority=%%B if %priority% == 8 ( wmic process where name^="%processName%" CALL setpriority "high priority" ) else ( wmic process where name^="%processName%" CALL setpriority "normal" )  
  3. Informative
    Jacques Cartier got a reaction from vorticalbox in Changing programs process priority via Command Prompt   
    I did some research. Return value 5 mean access denied. I need to run Command Prompt  in administrative mode to make it work. It's working now
×