Quantcast
Channel: Take Command / TCC
Browsing all 1683 articles
Browse latest View live
↧

PSHELL: How pass arguments to script?

Here's a little Powershell script. Code: # cmenu.ps1 $o = new-object -com "Shell.Application" $folder = $o.NameSpace($args[0]) $file = $folder.ParseName($args[1]) $file.InvokeVerb("Properties") It...

View Article


Piping to WSL?

This works reliably. Code: v:\> (do i=100 to 1 by -1 ( echo %i %@repeat[x,36] )) | wsl sort -n | tail /n 5 96 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 97 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 98...

View Article


TCC LE crashes without any info after recent windows updates

TCC LE (at least versions 13 and 14) has recently started crashing / disappearing after short while, like after 5-15 minutes even when it's just idle. There is no error popup or anything, it just...

View Article

Image may be NSFW.
Clik here to view.

Display problem with Unicode/UTF-8 Characters

Hi, I've hit a problem when doing work involving Unicode/UTF-8 characters in filenames. In a TCC window, using the Consolas font, but defaulting I think to an ANSI/CodePage system for foreign...

View Article

How can we display unicode characters? Other posts here don't seem to answer

I see a lot of discussion but I don't see a "here is your solution" followed by "thanks that worked!" I'm tired of the questionmark inside a box. I want to see my unicode characters. I don't get what...

View Article


Registry key name aliases?

I use REGDIR and the plugins KEYTIMES and @KEYTIME a lot. It would be nice to be able to type something significantly shorter than, for example, HKLM\SYSTEM\CurrentControlSet\Services\w32tmsvc. My...

View Article

Take Command / TCC / CMDebug / TCC-RT v30 Released

Version 30 of Take Command, TCC, CMDebug, and TCC-RT has been released. Take Command 30.0: Take Command, TCC, CMDebug, and TCC-RT are built with a new version of Visual Studio.​​The Take Command, TCC,...

View Article

Take Command / TCC / CMDebug / TCC-RT Version 30 Released

Version 30 has been released and is available on the JP Software website: https://jpsoft.com/downloads/v30/tcmd.exe https://jpsoft.com/downloads/v30/tcc.exe https://jpsoft.com/downloads/v30/cmdebug.exe...

View Article


Add inversion to FFIND's text searches (/T and /E) ...

... and return only lines that don't match. Grep uses -v, findstr uses /V. FFIND doesn't have good letters available. Is /- a possibility? See this for background.

View Article


TCC 30 virus

Installed TCC 30 and my AV program (Bitdefender) reports that the file "SReplace.exe" is infected with "Gen.Variant.Lazy.329695". Probably a false alarm but you should probably check it out.

View Article

TCC 30 issues

I've observed two unusual behaviors since installing TCC 30: 1) The TCCSTART/TCCEXIT Path is not being saved. If I enter a new value, then exit and restart TCC, the TCCSTART/TCCEXIT Path setting...

View Article

"grep" using only internals

In another thread I mentioned Code: d:\data\tcclibrary> alias mygrep ffind /v /k /m /e%1 for finding strings matching a regex in a file or a pipe. It's pretty fast; it lacks the ability to invert...

View Article

Why is ""="" == "" true?

Just curious! Code: v:\> if ""="" == "" echo yes yes

View Article


Download page says 30.0 Build 17 but it's 30.0 Build 18 ... and where is...

Hello On the download page I can find 30.0 Build 17 but the download itself is 30.0 Build 18. Also I can't find a changelog for 30.0 Build 18 ... Greetings

View Article

Python support - why not for .pyw files?

Hello From help: Python support in TCC You must enable Python support in the OPTION / Startup page. If it is enabled, TCC will automatically load a Python interpreter when it starts. If a suitable...

View Article


Can InitializePlugin() tell if TCC is starting?

Can InitializePlugin() tell the difference between TCC starting up and the plugin being loaded at some later time? I suppose I could compare the current time to TCC's startup time, and if it's...

View Article

@LXPATH

I'm playing with this (improvements welcomed). Code: v:\> function lxpath `'%@rereplace["([a-zA-Z]):",/mnt/%%@lower[\1],%@rereplace[\\,/,%$]]'` It works like this. Code: v:\> echo...

View Article


Bug in %@FINDFIRST function with multiple wildcards

It's clearly running the wildcards one at a time and returning the first file found with one of the wildcards, and not the first file found with all wildcards. It's easily verifiable via the following...

View Article

Change percent-sign to anything-else in filename

Change percent-sign to anything-else in filename passed as a parameter. This started out with "%20" in filenames. I KNOW that 0x20 is the hex code for a space, but I want to know how to change any...

View Article

How Does the /Image Option for SENDHTML Work?

Neither the WhatsNew file nor the help describes precisely how this option is used. Where do the images get embedded in the HTML message file? This is potentially something I have long wanted. Until...

View Article
Browsing all 1683 articles
Browse latest View live