Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Windows 64bit > Searching through Windows...

Reply
Thread Tools

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

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
Searching an LDAP directory through JAVA FET Java 1 03-04-2008 10:15 AM
Google search result to be URL-limited when searching site, but notwhen searching Web stumblng.tumblr Javascript 1 02-04-2008 09:01 AM
Searching through XML document RiseY3K@gmail.com XML 3 09-08-2005 10:56 PM
searching through MS Word and PDF documents Darrel ASP .Net 1 02-18-2005 08:43 PM
rant: searching through MSDN David ASP .Net 6 02-23-2004 01:55 PM



Advertisments
 



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