Hi folks,
my buddies here want me to us this prog to check several network stuff here. I wanna see it all in Bit or MBit and not in K.
Is there any other way to to got it?
thanks
Looking for Bit/MBIT Display
Moderators: Hacker, petermad, Stefan2, white
Looking for Bit/MBIT Display
Last edited by Friendly on 2014-03-02, 00:26 UTC, edited 2 times in total.
You can do what you ask for by using Custum columns and the DirSizeCalc plugin.
License #524 (1994)
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
DirSizeCalc has KiBytes and KBytes (2^10 and 1000) but not bits unless I'm missing something.
You could use the Script Content Plugin with something like this:
@Friendly: Just to be sure: do you really want to see bit and not byte values?
You could use the Script Content Plugin with something like this:
Code: Select all
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(filename)
content = f.size * 8 & " Bit"
Set f=nothing
Set fso=nothing