Recent content by mcqc

  1. M

    [SOLVED] Adding date to the name of files and folders

    KCDaRookie on Reddit found the solution: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability...
  2. M

    [SOLVED] Adding date to the name of files and folders

    Thanks for the help. I already use free commander. I need to open commander, navigate to the file, click on file, multirename, select profiles, rename and quit. I want to speed up the process. Right-click, click on the script.
  3. M

    [SOLVED] Adding date to the name of files and folders

    Hi, I would like to add the "Date Created" or "Date Modified" to any files or folders. Possibly by right-clicking on it and running a script from the context menu. Can that be done with autohotkey, batch file or VBS ? Any help would be appreciated example: "test.txt" to "test 2020-10-19.txt"
  4. M

    [SOLVED] Automatically copy a filename and launch a web search about the file

    Google search any files or folders on your computer. Show/Hide File Extensions. -Download and install Autohotkey -Open Notepad -Copy and paste this code FileName=%1% FileName:=RegExReplace(FileName,"&","%26") FileName:=RegExReplace(FileName,"#","%23") SplitPath FileName,Name Run h t t p...
  5. M

    [SOLVED] Automatically copy a filename and launch a web search about the file

    I would like to do it via the explorer context menu when I right-click on the file, possibly with a batch file or VBS ? and add it with "Easy context menu" Did Anyone know a way to do it ? Any help would be appreciated
  6. M

    [SOLVED] How to Add Google Search Option to the Right-Click context Menu in windows Explorer

    Thank you for the help guys. dalchina from tenforums found the solution. You can see it on this page: https://www.tenforums.com/customization/151687-add-google-search-option-right-click-context-menu-win-explorer.html#post1854867
  7. M

    [SOLVED] How to Add Google Search Option to the Right-Click context Menu in windows Explorer

    I didn't find anything online. Example, right click on mp3 file, click google search option to launch a web search about the mp3 song. Did Anyone know a way to do it ?
  8. M

    [SOLVED] Need Advices for New PC Build Please

    Which PSU should I get?
  9. M

    [SOLVED] Need Advices for New PC Build Please

    Can the psu do the job for a couple of months ? is it compatible with the motherboard ?
  10. M

    [SOLVED] Need Advices for New PC Build Please

    Thanks, yeah sure.
  11. M

    [SOLVED] Need Advices for New PC Build Please

    Hello, I need help for a new pc. I will use it for gaming. I want to overclock in the future. My budget is 375-425$ can for cpu+motherboard+ram. I will keep all the remaining parts from my old pc if I can. My system: GIGABYTE GA-H55M-UD2H REV 1.0 I5 750 2.66GHZ 8MB Quad Core - COOLER MASTER...
  12. M

    [SOLVED] Batch file to toggle between balanced and high performance power plan

    Just found the perfect app "PowerPlanSwitcher"
  13. M

    [SOLVED] Batch file to toggle between balanced and high performance power plan

    This one is working perfectly @echo off set Balanced=381b4222-f694-41f0-9685-ff5bb260df2e set HighPerf=8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c for /f "tokens=2 Delims=:(" %%a in ('powercfg /getactivescheme') do for /f %%b in ("%%a") do set Active=%%b if "%Active%"=="%Balanced%"...
  14. M

    [SOLVED] Batch file to toggle between balanced and high performance power plan

    Is it possible to toggle between balanced and high performance power plan using a batch file ? powercfg -s 381b4222-f694-41f0-9685-ff5bb260df2e and powercfg -s 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c When set to balanced, toggle to high performance and when set to high performance, toggle to...
  15. M

    Question How to make a toggle switch in batch file ?

    I got the answer I wanted on linustechtips forum from user badreg. Thank for your help anyway. 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...