Painting Reflection

waiting for the bus on ossington and dundas

KitKatneko

Friends talking

at the distillery

KitKatneko

Wood on lake

huron

KitKatneko

Wind surfer

Blooming

KitKatneko

My Car

Blooming

KitKatneko

Sakura

Blooming

KitKatneko

Sakura

in Washington DC

Sakura

Philadelphia hall

Wow!

Action

Central Park

NYC, from the top of Rockfeller (?) building. Better than the Empire State as there is no windows nor fences.

Action

Warning

Emergency Exit Only

Action

Bloody ATM

litterally

Action

Summer Winter time

still cold in Toronto

Action

Where is my bike

I remember titling another picture just like this, back in Chofu, a bike in the middle of hundreds. here

Action

Search for a file with Powershell

Apr 17th, 2009 by Florian | 0

I am slowly converting my command line skills from the good old command prompt to powershell. It is quite different and somehow very powerfull.

I will probably be sharing a few basic tips for daily life using powershell on your computer.

Today is  a substitute to the old:

dir /s *filename*

So if you are looking for a file or directory in your file system try something simple like this:

dir -recurse -filter *filename* | sort name | ft directory, name

In fact, dir doesn’t even exist anymore, dir is an alias of get-childitem.

I am not sure I should debate about this feature as MSFT does that very well on technet.

Just to sum up it is in fact a very powerfull search tool.

Leave a Reply