Misc



 

Introduction

This page contains miscellaneous information.

 

Windows File with a Path Greater Than Specified

From Powershell,

     cmd /c dir /s /b |? {$_.length -gt 260} > tooLong.txt

 

Windows Explorer FTP with Username & Password

ftp://<username>:<password>@ftp.yoursite.com

ftp://<username>:<password>@192.168.0.1

 

e.g.

ftp://admin:admin@192.168.0.1

 

References

 

 

Views: