Posts

Showing posts from September, 2021
Quickbooks DB Database Server crashing on your DC Domain Controller? Its due to the DNS service using the same ports as QB's Database server service. Tell Windows to limit its DNS Server's ports: netsh int ipv4 add excludedportrange protocol=udp startport=55368 numberofports=5
Excel Conditional Format vLookup Compare Column Sheet Highlight Matches =NOT(ISERROR(VLOOKUP($D1,DeleteList!$B$1:$B$4156,1,FALSE)))
Code Example / Template AutoHotKey Script to cycle between browsers, or send a Ctrl+Tab every minute.  #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. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.  SetTimer, PressTheKey, 60000 return  PressTheKey: ; Send, {CTRL DOWN}{Tab}{CTRL UP}  WinActivate, ahk_exe msedge.exe  Sleep 2000 ; Send, {Tab}{ALT UP}  Sleep, 1000  WinActivate, ahk_exe chrome.exe  Sleep, 5000 ; WinGetTitle, Title, A ;MsgBox, The is "%Title% ; If WinActive("Display.pptx - LibreOffice Impress") ; SetTimer, PressTheKey, 20000 ; else ; SetTimer, PressTheKey, 5000 return   ::teh::the ::teh::the