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...
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.
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"
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...
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
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
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 ?
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...
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%"...
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...
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...