Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Windows 64bit (http://www.velocityreviews.com/forums/f46-windows-64bit.html)
-   -   Searching through Windows... (http://www.velocityreviews.com/forums/t726621-searching-through-windows.html)

Carmen Gauvin-O'Donnell 06-26-2010 12:05 PM

Searching through Windows...
 
Hey folks! Back with some of the old Windows OSes, if I wanted to find all
my temporary files, all I had to do was open up my C: drive and search for
"*.tmp"

I've tried doing this in Windows 7 Pro, but it says it's not finding
anything, which I find completely hard to believe, of course.

Has anything changed, or should we not still be able to do wildcard-type
searches?

Any help gratefully accepted. Thanks!

Carmen


Drew 06-26-2010 12:46 PM

Re: Searching through Windows...
 
Start, open the "run"box type %temp% hit enter and see how many you have

"Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
news:e4XgwfSFLHA.5668@TK2MSFTNGP04.phx.gbl...
> Hey folks! Back with some of the old Windows OSes, if I wanted to find all
> my temporary files, all I had to do was open up my C: drive and search for
> "*.tmp"
>
> I've tried doing this in Windows 7 Pro, but it says it's not finding
> anything, which I find completely hard to believe, of course.
>
> Has anything changed, or should we not still be able to do wildcard-type
> searches?
>
> Any help gratefully accepted. Thanks!
>
> Carmen



Carmen Gauvin-O'Donnell 06-26-2010 01:25 PM

Re: Searching through Windows...
 
Ah... thank you Sir! That certainly does the trick...

That having been said, where would I have found such a "string" out? What
are the other strings that are useful for finding "not the usual suspects"
in Windows?

C.

"Drew" <Aylen1957@invalid.nospam.net> wrote in message
news:uUfyi2SFLHA.5472@TK2MSFTNGP04.phx.gbl...
> Start, open the "run"box type %temp% hit enter and see how many you have
>
> "Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
> news:e4XgwfSFLHA.5668@TK2MSFTNGP04.phx.gbl...
>> Hey folks! Back with some of the old Windows OSes, if I wanted to find
>> all my temporary files, all I had to do was open up my C: drive and
>> search for "*.tmp"
>>
>> I've tried doing this in Windows 7 Pro, but it says it's not finding
>> anything, which I find completely hard to believe, of course.
>>
>> Has anything changed, or should we not still be able to do wildcard-type
>> searches?
>>
>> Any help gratefully accepted. Thanks!
>>
>> Carmen

>


Charlie Russel - MVP 06-26-2010 02:07 PM

Re: Searching through Windows...
 
You can still do what you are used to doing, but the issue becomes one of
location. Windows hasn't changed the commands, but it has changed the
location, creating the issue. So, if you open a command window (CMD), it
will put you in your home directory. From there, your temp files are
undoubtedly buried several layers down in a normally hidden directory. So
you won't see them with a simple "dir *.tmp". But if you add a "/s" to that
dir command, you'll see a bunch of files. The /s tells dir to also look in
subdirectories of the current directory.

Using the %temp% variable, as Carmen suggested, gets around the issue
searching in the directory where windows puts temporary files by default.

--
Charlie.
http://msmvps.com/blogs/russel




"Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
news:8E75D652-EE16-4619-A4D0-C6290050F88B@microsoft.com...
> Ah... thank you Sir! That certainly does the trick...
>
> That having been said, where would I have found such a "string" out? What
> are the other strings that are useful for finding "not the usual suspects"
> in Windows?
>
> C.
>
> "Drew" <Aylen1957@invalid.nospam.net> wrote in message
> news:uUfyi2SFLHA.5472@TK2MSFTNGP04.phx.gbl...
>> Start, open the "run"box type %temp% hit enter and see how many you have
>>
>> "Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
>> news:e4XgwfSFLHA.5668@TK2MSFTNGP04.phx.gbl...
>>> Hey folks! Back with some of the old Windows OSes, if I wanted to find
>>> all my temporary files, all I had to do was open up my C: drive and
>>> search for "*.tmp"
>>>
>>> I've tried doing this in Windows 7 Pro, but it says it's not finding
>>> anything, which I find completely hard to believe, of course.
>>>
>>> Has anything changed, or should we not still be able to do wildcard-type
>>> searches?
>>>
>>> Any help gratefully accepted. Thanks!
>>>
>>> Carmen

>>



Robert Aldwinckle 06-26-2010 02:59 PM

Re: Searching through Windows...
 


"Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
news:e4XgwfSFLHA.5668@TK2MSFTNGP04.phx.gbl...
> Hey folks! Back with some of the old Windows OSes, if I wanted to find all
> my temporary files, all I had to do was open up my C: drive and search for
> "*.tmp"
>


> I've tried doing this in Windows 7 Pro, but it says it's not finding
> anything, which I find completely hard to believe, of course.


>
> Has anything changed, or should we not still be able to do wildcard-type
> searches?



Nothing has changed if you use a cmd window:

cd /d C:
dir/a/b/s/p *.tmp

or you could try a Powershell window for something similar more verbosely:

PS C:\> Get-ChildItem -Force -Recurse -include
..tmp -WarningAction:SilentlyContinue -ErrorAction:SilentlyContinue |
Select-Object -Property FullName | more

Tip: You could go and do something else after issuing this. Also, judging
by the messages being suppressed by those options, it's not clear to me if
the two results would be equivalent. <eg>


>
> Any help gratefully accepted. Thanks!
>
> Carmen



Good luck

Robert Aldwinckle
---


Zaidy036 07-12-2010 01:47 AM

Re: Searching through Windows...t
 
"Robert Aldwinckle" <robald@techemail.com> wrote:
>
>
> "Carmen Gauvin-O'Donnell" <seegod1@cogeco.ca> wrote in message
> news:e4XgwfSFLHA.5668@TK2MSFTNGP04.phx.gbl...
>> Hey folks! Back with some of the old Windows OSes, if I wanted to
> > find all > my temporary files, all I had to do was open up my C:
> > drive and search for > "*.tmp"
>>

>
>> I've tried doing this in Windows 7 Pro, but it says it's not finding
> > > anything, which I find completely hard to believe, of course.

>
>>
>> Has anything changed, or should we not still be able to do
> > wildcard-type > searches?

>
>
> Nothing has changed if you use a cmd window:
>
> cd /d C:
> dir/a/b/s/p *.tmp
>
> or you could try a Powershell window for something similar more
> verbosely:
>
> PS C:\> Get-ChildItem -Force -Recurse -include .tmp
> -WarningAction:SilentlyContinue -ErrorAction:SilentlyContinue |
> Select-Object -Property FullName | more
>
> Tip: You could go and do something else after issuing this. Also,
> judging by the messages being suppressed by those options, it's not
> clear to me if the two results would be equivalent. <eg>
>
>
>>
>> Any help gratefully accepted. Thanks!
>>
>> Carmen



Good luck

Robert Aldwinckle
---

Try the free and fast "Everything" at www.stools.com


All times are GMT. The time now is 05:16 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57