Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows 64 Bit > Searching through Windows...

Reply
Thread Tools Display Modes

Searching through Windows...

 
 
Carmen Gauvin-O'Donnell
Guest
Posts: n/a

 
      06-26-2010
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

 
Reply With Quote
 
 
 
 
Drew
Guest
Posts: n/a

 
      06-26-2010
Start, open the "run"box type %temp% hit enter and see how many you have

"Carmen Gauvin-O'Donnell" <> wrote in message
news:...
> 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


 
Reply With Quote
 
Carmen Gauvin-O'Donnell
Guest
Posts: n/a

 
      06-26-2010
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" <> wrote in message
news:...
> Start, open the "run"box type %temp% hit enter and see how many you have
>
> "Carmen Gauvin-O'Donnell" <> wrote in message
> news:...
>> 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

>

 
Reply With Quote
 
Charlie Russel - MVP
Guest
Posts: n/a

 
      06-26-2010
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" <> wrote in message
news:8E75D652-EE16-4619-A4D0-...
> 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" <> wrote in message
> news:...
>> Start, open the "run"box type %temp% hit enter and see how many you have
>>
>> "Carmen Gauvin-O'Donnell" <> wrote in message
>> news:...
>>> 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

>>


 
Reply With Quote
 
Robert Aldwinckle
Guest
Posts: n/a

 
      06-26-2010


"Carmen Gauvin-O'Donnell" <> wrote in message
news:...
> 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
---

 
Reply With Quote
 
Zaidy036
Guest
Posts: n/a

 
      07-12-2010
"Robert Aldwinckle" <> wrote:
>
>
> "Carmen Gauvin-O'Donnell" <> wrote in message
> news:...
>> 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
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Update Error Code: 80070005 Joe Davis Windows Update 33 05-05-2010 08:03 AM
Error number 80073712 naraku4656 Windows Update 51 02-18-2010 11:36 PM
Overriding default SBS 2008 policies Andrew M. Saucci, Jr. Windows Small Business Server 4 02-08-2010 07:36 AM
I also have an error 646 in Windows update. Please help. Jose Windows Update 12 01-09-2010 01:00 PM



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 58 59