Technology Get the latest on technology, electronics and software…

Software/Tip of the Week

Thread Tools
 
Old 10-10-2017, 06:21 PM
  #161  
Needs more Lemon Pledge
 
stogie1020's Avatar
 
Join Date: Mar 2005
Location: Phoenix, AZ
Age: 51
Posts: 52,768
Received 2,000 Likes on 1,173 Posts
Thanks underdog. None of them seem to be able to report the total size of a folder, though...

I may be doing something wrong, but the first one show zero bytes for every directory...
Old 10-10-2017, 07:09 PM
  #162  
I am #76,361,211,935
 
underdog's Avatar
 
Join Date: Nov 2001
Location: Ottawa,Ontario
Posts: 1,285
Received 344 Likes on 201 Posts
Hmm .. you're right.
If You run the NirSoft app in "Summary Mode" ( the top drop down that defaults to "Standard Search")
it does produce directory totals BUT only for directories with files in them, and only for the files - there
doesn't seem to be any way to make it "rollup" sub-directory sizes into directory totals.

Treesize Professional? Its only $54 ...

Last edited by underdog; 10-10-2017 at 07:23 PM.
Old 10-10-2017, 09:28 PM
  #163  
Racer
 
atomlinks's Avatar
 
Join Date: Mar 2011
Posts: 458
Received 93 Likes on 75 Posts
Has to have some type of recursive method and total up the file sizes in each dir which take some time. If you're mainly looking for folder size I just tried this and works nicely. It's not .csv but exports a decent html report. Could modify it to export to a .csv
https://community.spiceworks.com/scr...et-foldersizes

In the script can modify the Path and the Export Path and run set it on a scheduled task to run @ certain time of the day every day if you want.
Old 10-11-2017, 12:04 PM
  #164  
Needs more Lemon Pledge
 
stogie1020's Avatar
 
Join Date: Mar 2005
Location: Phoenix, AZ
Age: 51
Posts: 52,768
Received 2,000 Likes on 1,173 Posts
Originally Posted by underdog
Hmm .. you're right.
If You run the NirSoft app in "Summary Mode" ( the top drop down that defaults to "Standard Search")
it does produce directory totals BUT only for directories with files in them, and only for the files - there
doesn't seem to be any way to make it "rollup" sub-directory sizes into directory totals.

Treesize Professional? Its only $54 ...
I am using the trial of that right now, but I ultimately need this for multiple computers and $54 per machine is ridiculous for this one thing...

Originally Posted by atomlinks
Has to have some type of recursive method and total up the file sizes in each dir which take some time. If you're mainly looking for folder size I just tried this and works nicely. It's not .csv but exports a decent html report. Could modify it to export to a .csv
https://community.spiceworks.com/scr...et-foldersizes

In the script can modify the Path and the Export Path and run set it on a scheduled task to run @ certain time of the day every day if you want.
wow, that works, but it's clunky as hell...
Old 10-11-2017, 07:07 PM
  #165  
Racer
 
atomlinks's Avatar
 
Join Date: Mar 2011
Posts: 458
Received 93 Likes on 75 Posts
Someone posted DirListing, they have the source https://sourceforge.net/projects/dir...les/1.0%20src/ Download Visual Studio Express(free) and modify it to your needs. :-)
Old 10-11-2017, 07:56 PM
  #166  
Needs more Lemon Pledge
 
stogie1020's Avatar
 
Join Date: Mar 2005
Location: Phoenix, AZ
Age: 51
Posts: 52,768
Received 2,000 Likes on 1,173 Posts
^I wish I was that smart...
Old 10-11-2017, 10:02 PM
  #167  
Racer
 
atomlinks's Avatar
 
Join Date: Mar 2011
Posts: 458
Received 93 Likes on 75 Posts
Don't have to be smart, just know how to copy paste from the google.

I threw something together, few lines of code... Just download Visual Studio and create a new forms project. Throw a couple of textboxes and a button on the form. Go into code of the form and type the stuff in blue.
Recursion is in Red - calls itself
Click the green "play" button at the top of Visual Studio
Output to csv on the right.

I'd send you an exe, but who would trust a stranger on the internet ​​​​​​​
Old 10-12-2017, 10:27 AM
  #168  
Needs more Lemon Pledge
 
stogie1020's Avatar
 
Join Date: Mar 2005
Location: Phoenix, AZ
Age: 51
Posts: 52,768
Received 2,000 Likes on 1,173 Posts
^Whoa, cool! I will mess around with that later today... Thanks!
Old 10-17-2017, 08:21 PM
  #169  
Moderator Alumnus
 
ChodTheWacko's Avatar
 
Join Date: May 2001
Location: Ronkonkoma, NY
Age: 51
Posts: 4,295
Received 121 Likes on 86 Posts
Originally Posted by stogie1020
Looking for a free (NOT trial version) program to provide a directory listing of any location (local, USB, network, etc.) along with folder sizes AND OUTPUT it to CSV or XLSX.

Currently using WinDirSat, TreeSize (free), etc. but none will output to a CSV or Excel. I can print to PDF from TreeSize, but that's it.

Any ideas? Not interested if it doesn't output to CSV or Excel.

I need to regularly audit my NAS and other storage devices based on folder size and move things around based on size of the folders, back things up to other drives, etc...
How about using a windows port of Unix's "du" command like:
https://docs.microsoft.com/en-us/sys...s/downloads/du

The csv mode of that program gives me something like:
C:\test>du -l 999 -c

DU v1.6 - Directory disk usage reporter
Copyright (C) 2005-2016 Mark Russinovich
Sysinternals - www.sysinternals.com

Path,CurrentFileCount,CurrentFileSize,FileCount,Di rectoryCount,DirectorySize,DirectorySizeOnDisk
"C:\test\blah",0,0,12,3,145051583,145101856
"C:\test",5,543673692,17,4,688725275,688792688
Old 10-19-2017, 10:48 AM
  #170  
Needs more Lemon Pledge
 
stogie1020's Avatar
 
Join Date: Mar 2005
Location: Phoenix, AZ
Age: 51
Posts: 52,768
Received 2,000 Likes on 1,173 Posts
Chod,
Awesome, thanks! I got it outputting to a text file in CSV that i can bring into Excel.

Any reason I should be having trouble using it to review a network share? I tried the input path as as both the mapped drive letter and the \\path\ but both returned a "Invalid directory path."

I should probably reboot three times...
Old 10-19-2017, 01:25 PM
  #171  
Moderator Alumnus
 
ChodTheWacko's Avatar
 
Join Date: May 2001
Location: Ronkonkoma, NY
Age: 51
Posts: 4,295
Received 121 Likes on 86 Posts
Originally Posted by stogie1020
Chod,
Awesome, thanks! I got it outputting to a text file in CSV that i can bring into Excel.

Any reason I should be having trouble using it to review a network share? I tried the input path as as both the mapped drive letter and the \\path\ but both returned a "Invalid directory path."

I should probably reboot three times...
I haven't tried it with a network share - it wouldn't surprise me if it doesn't work, since that's a slightly different animal.
du is a pretty fundimental unix command,. Originally I was going to suggest cygwin's du binary, although I don't think it has a CSV mode.
There's probably a bunch of different ports/variants.
Old 10-23-2017, 04:12 PM
  #172  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
I'm looking for a good/free 3rd party VPN utility for Windows. Ever since Windows 10 Build 1703 the built-in VPN client has been pretty intermittent. (it's no better in 1709), I figured it might've been just me but my clients are seeing the same intermittent issues. I need L2TP/preshared key, and PPTP support, Open VPN would be nice too. Anyone know of one?
Old 01-14-2019, 10:22 AM
  #173  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
Originally Posted by #1 STUNNA
I'm looking for a good/free 3rd party VPN utility for Windows. Ever since Windows 10 Build 1703 the built-in VPN client has been pretty intermittent. (it's no better in 1709), I figured it might've been just me but my clients are seeing the same intermittent issues. I need L2TP/preshared key, and PPTP support, Open VPN would be nice too. Anyone know of one?
^ I figured out what the problem is here. Starting with 1703 VPN Network adapter numbers starting changing randomly. Security feature IDK? So when I would assign a static route to a network adapter interface number using the cmd "route add x.x.x.x mask x.x.x.x IF xx -p" it'd work for a little bit and then change because the IF# changed. I eventually learned about the powershell cmdlet "add-vpnconnectionroute -ConnectionName "Acme VPN" -DestinationPrefix x.x.x.x/xx" which assigns static routes to network connection names and not the interface #. As long as you don't change the VPN name after you create it it will continue to work.

Last edited by #1 STUNNA; 01-14-2019 at 10:27 AM.
Old 01-14-2019, 10:24 AM
  #174  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
If you ever run sfc scan and it fails, then run dism to fix the issue, then run sfc scan again. This just happened on my work PC and it actually worked. My PC failed to update to 1809 from 1803, hopefully the update will install now

Old 01-14-2019, 10:52 AM
  #175  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
Originally Posted by #1 STUNNA
Ok well I hope it's not too late for you to use this next tip. This week it's ninite.com! This site is a way to drastically simplify the install process of your common programs. If you're like me and you're reinstalling OSes often you have to go through that initial setup phase where you install your browser, AV, java, flash, torrent, adobe reader, itunes, vlc, and various other utilities. Well this site is pretty much a bunch of check boxes and you check which apps you want to install and then you download a single customized exe file that then goes and downloads and automatically installs the most current version of all your apps for you with very few if any dialog boxes to choose. So you can run it in the background and it's pretty much hands off from there. It installs with the default settings and DOESN'T install any of the junk toolbars or any other crapware!!!! Use this in conjunction (ooo, big word) with the filehippo.com update and you got a simplified install and update process for a lot of your apps!

www.ninite.com

Originally Posted by #1 STUNNA

InvisibleHand shows a discreet notification when the product you're browsing can be bought for a lower price elsewhere. It gives you a link directly to the product page at the competing retailer and it also work in Google search results



You won't even know you have it until a little yellow "information bar" pops up at the top of the page giving you links to other places that have the same item for a cheaper price.



InvisibleHand: Home
10 years later and I still use ninite almost daily at work, and I still use Invisiblehand to find cheaper prices; I also use Honey as well since they're pretty much the same.
Old 01-14-2019, 11:20 AM
  #176  
Senior Moderator
 
thoiboi's Avatar
 
Join Date: Apr 2010
Location: SoCal, CA
Posts: 46,869
Received 8,575 Likes on 6,626 Posts
Sweet invisible hand! I personally just use the amazon assistant app and it will tell you if the price is cheaper (ALBEIT only on Amazon and not on other sites). May have to look into the Invisible Hand thingamabob.
Old 01-14-2019, 01:18 PM
  #177  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
Invisiblehand > Amazon assistant. Does the same thing but checks many other sites including Amazon, I've never been sent to a shady site through them, they've all been legit.
Old 01-14-2019, 01:38 PM
  #178  
Senior Moderator
 
thoiboi's Avatar
 
Join Date: Apr 2010
Location: SoCal, CA
Posts: 46,869
Received 8,575 Likes on 6,626 Posts
Originally Posted by #1 STUNNA
Invisiblehand > Amazon assistant. Does the same thing but checks many other sites including Amazon, I've never been sent to a shady site through them, they've all been legit.
Is it through some sort of affiliate link for them so they take a cut?
Old 01-14-2019, 04:07 PM
  #179  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
IDK probably
Old 01-15-2019, 12:59 AM
  #180  
Race Director
 
nfnsquared's Avatar
 
Join Date: Dec 2003
Location: MAGA country
Posts: 12,474
Received 1,793 Likes on 1,346 Posts
Originally Posted by #1 STUNNA
If you ever run sfc scan and it fails, then run dism to fix the issue, then run sfc scan again. This just happened on my work PC and it actually worked. My PC failed to update to 1809 from 1803, hopefully the update will install now

And FYI, you'd better hope you're not in a hurry. The restorehealth takes forever to complete, at least it has whenever I've had to run it....

Old 10-12-2019, 08:43 PM
  #181  
Team Owner
 
doopstr's Avatar
 
Join Date: Jan 2001
Location: Jersey
Age: 52
Posts: 25,327
Received 2,044 Likes on 1,133 Posts
:mindblown:
https://www.reddit.com/r/LifeProTips..._adblocker_to/
LPT: You can configure your adblocker to automatically block all "You're using an adblocker!" annoying messages
For uBlock Origin users:
  1. Right click the extension icon and then Options. A new tab will open.
  2. You'll see a few sub-tabs, click on "Filter lists"
  3. Under "Ads", tick the box that says "Adblock Warning Removal List"
  4. If a warning icon appears beside it, click "Update now" on the top
Done!

------

Edit: for non uBlock Origin users



  • AdBlock Plus*
Options > Advanced > Filter Lists > Adblock Warning Removal List > Active (Thanks u/RedditDumpsterFires)
  • AdGuard
Ad Blocker > Scroll down to add filter > AdBlock Warning Removal List is down under annoyances (Thanks u/fishychan)
  • uBlock*
Enable "Adblock Warning Removal List‎" under "3rd party lists" (Thanks u/picartman)

------

* Keep in mind that uBlock is not private as it collects your personal data and that Adblock Plus' performance could be better. uBlock Origin solves both of these issues. I won't post the direct link to the sources as the last time I did that my LPT got removed, but you can google "uBlock (non-Origin) adds user tracking, make sure your users have uBlock Origin!" and "Adblockers Performance Study DEV Community" for more info.
The following 2 users liked this post by doopstr:
#1 STUNNA (10-13-2019), stogie1020 (10-15-2019)
Old 09-08-2023, 01:39 PM
  #182  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts


AlDente Pro is a macOS battery management app. You can set a max charge limit like you can on a Tesla, it can slow the charge rate if the battery exceeds a certain temp, and the power flow shows the energy transfer rate to the mac and shows real time charge speeds from the chargerI saw Kyle Conner from Out of Spec Youtube channels use it









https://apphousekitchen.com/

Old 09-09-2023, 02:41 AM
  #183  
Sanest Florida Man
Thread Starter
 
#1 STUNNA's Avatar
 
Join Date: Aug 2007
Location: Florida
Posts: 43,356
Received 10,112 Likes on 6,104 Posts
VMware tools 12.3.0 finally gives basic driver support for ARM64 based Windows VMs running in VMware Fusion on Apple Silicon based Macs. So now you can copy and paste between macOS and your VM

https://docs.vmware.com/en/VMware-To...tes/index.html
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
emailnatec
5G TLX Tires, Wheels & Suspension
29
09-28-2018 04:27 PM
knight rider
Car Talk
9
03-04-2016 08:59 AM
jterp7
3G MDX (2014-2020)
9
02-03-2016 08:34 PM
dainmezron
4G TL (2009-2014)
16
10-16-2015 06:56 PM
polish_pat
3G TL Problems & Fixes
17
09-30-2015 12:22 PM



Quick Reply: Software/Tip of the Week



All times are GMT -5. The time now is 10:37 PM.