Search forum
Used the search "problem" Got the message below. Not been here in a while, maybe I forgot how to search? Oops! We ran into some problems. Please specify a search query or the name of a member.
View ArticleStarship integration?
I spend most of my time in Bash or Zsh on macOS or *nix, so I'm used to having a heavily customized prompt courtesy of Starship. When I'm on Windows I typically stick with TakeCommand (as I'm an old...
View Articleability to install with winget?
I'm trying to automate my environments as much as possible — including the automation of rolling out common programs I use. Is there a winget command to install TCC?
View ArticleNew environment for START and EXEC
Elsewhere, I posted this. When I execute START /UNELEVATED d:\tc33\tcc.exe in an elevated TCC, the started process inherits the current environment. That's a small problem for me because my TCSTART.BTM...
View ArticleWhy did PROMPT change?
Though I don't see how it might matter, the /U(ser) environment has the green PROMPT.
View ArticleHave WHICH say how it located an external program ...
... via the path ... via the AppPaths key ... current directory ... (are there others?).
View ArticleWindows Virtual Desktop
As of version 0.98.6 of the MyWindow Plugin, the WINDOW command has a new option. WINDOW VDESKTOP allows the moving of the TCC Console from Virtual Desktop to Virtual Desktop. I've made a simple alias;...
View ArticleSOLVED: Request: @STRIPANSI[] function
This one is killing me because TCC doesn't have regex substitution that I know about, and I'd rather not rely on sed. I just want to be able to do: Code: set CLEAN_TITLE=%@STRIP_ANSI[%title_with_ansi]...
View Articlerandomize usb-stick audio for players that won't shuffle
Tired of bluetooth speakers that won't play the contents of a usb stick in shuffle order? Why not prefix each song with a random 4 digit number? fix the problem in TCC by randomizing the filesort via...
View Article%@REPEAT doesn't die gracefully or throw errormessage or errorlevel when fed...
Perhaps there's some holistic reason why this isn't a bug... That always seems to be the case. But script execution is being halted without finishing AND without setting any kind of errorlevel.......
View ArticleHow to set the TCC font to use Nerd Fonts?
I've been using TCC a lot more than TakeCommand lately, since learning its visual display is rock solid by comparison, but I've run into a bit of an issue. In particular, I can't seem to find any way...
View ArticleDIRENV fails if the directory has a space in the name
I'm using the following version of TCC: TCC 33.00.11 x64 Windows 11 [Version 10.0.22631.4317] TCC Build 11 Windows 11 Build 22631 Click to expand... I just recently started using the direnv feature and...
View Articleescaping & in text
Hello What is the best way to escape the & in the gosub call gosub cpy “Celebrating the Songs & Voice of Pete Seeger.m4v” I have “cpy” defined as :cpy [file] when I reference “file” %file the...
View ArticleWhen WMIQUERY finds no instances ...
Could it be made more friendly? Compare these. Code: v:\> wmic process where name='notepad.exe' get ProcessID No Instance(s) Available. v:\> wmiquery /L /a . "Select ProcessId from Win32_Process...
View ArticleBuild 12 annoyances
1. Every time I open a new tab, I see the console window flash in front of the Take Command window. This is a minor cosmetic nuisance. 2. When I try to drag over text to highlight it, the tab window...
View ArticleWebsite and Forum Maintenance 2024-10-18 20:00 - 23:59 EST
We will be moving the JP Software website and forums to a new host on Friday, October 18th, between 20:00 and 23:59. Server IP addresses are changing as well, so access after the move will be limited...
View ArticleChanges to @REPEAT
As of and prior to TCC 33.00.12, the following worked; Code: TCC 32.10.21 x64 Windows 10 [Version 10.0.19045.5011] Copyright 2023 JP Software Inc. All Rights Reserved C:\...\TCMD32>echo...
View ArticleAddition using only bit manupulation
To keep my mind active, here's my method of addition using only bit manipulation. Code: @setlocal @echo off set num1=1989 set num2=35 do while %num2 ne 0 set carry=%@eval[%num1 & %num2] set...
View Article