473,405 Members | 2,445 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Programmatically Clear Internet History

How can I programmatically clear the internet history in Windows XP? I
tried downloading the PowerToys which contain TweakUI as this used to
do it in previous versions of Windows, but the option is not there. I
then tried installing an old version of TweakUI but this does not work
either. I assume if the contents of '..Local Settings\History' could
be deleted then this would work but how do you this from a script.

Is there anyway in VB/WSH that you can use an API to do this?

Thanks in advance.
Jul 21 '05 #1
9 3170
There is a setting in Internet Properties (Control Panel) at the bottom....
"Steve" <go****@valleyboy.net> wrote in message
news:7a**************************@posting.google.c om...
How can I programmatically clear the internet history in Windows XP? I
tried downloading the PowerToys which contain TweakUI as this used to
do it in previous versions of Windows, but the option is not there. I
then tried installing an old version of TweakUI but this does not work
either. I assume if the contents of '..Local Settings\History' could
be deleted then this would work but how do you this from a script.

Is there anyway in VB/WSH that you can use an API to do this?

Thanks in advance.

Jul 21 '05 #2
Steve wrote:
How can I programmatically clear the internet history in Windows XP? I
tried downloading the PowerToys which contain TweakUI as this used to
do it in previous versions of Windows, but the option is not there. I
then tried installing an old version of TweakUI but this does not work
either. I assume if the contents of '..Local Settings\History' could
be deleted then this would work but how do you this from a script.

Is there anyway in VB/WSH that you can use an API to do this?


Hi

A command line utility that might do the job:

IECache.exe
http://groups.google.com/groups?selm....uni-berlin.de

--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter
Jul 21 '05 #3
Some time ago, I posted a scripted web page called:
Clear IE Cache/Cookies/History
which provided single button implementation of each function.
If there is enough request, I will make it available :-)

- Michel Gallant
Visual Security MVP
http://pages.istar.ca/~neutron

"Torgeir Bakken (MVP)" <To*****************@hydro.com> wrote in message
news:3F**************@hydro.com...
Steve wrote:
How can I programmatically clear the internet history in Windows XP? I
tried downloading the PowerToys which contain TweakUI as this used to
do it in previous versions of Windows, but the option is not there. I
then tried installing an old version of TweakUI but this does not work
either. I assume if the contents of '..Local Settings\History' could
be deleted then this would work but how do you this from a script.

Is there anyway in VB/WSH that you can use an API to do this?


Hi

A command line utility that might do the job:

IECache.exe
http://groups.google.com/groups?selm....uni-berlin.de

--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter

Jul 21 '05 #4
What is Java?

Is it legible?
Compiled?
Needs accepting?
Cookie?
Certificate?
Runtime installed?
Jerk code?
Professor's salary to continue site?
Site .urls available cyclically?
========
Guess it is like .NET
as in Java.SUN server

------------
you know I can do without both of it.

+++++++++++

Glad you configured to all those groups already.

^^^^^^^^
you know I saw your encrypt arbitrary content example
where the result was more than the original. How come?

=========
Like when I go shopping and say what I want,
and the guys says I am "this type of a consumer".


"Michel Gallant" <ne*****@NOSPAMistar.ca> wrote in message
news:Y8********************@news20.bellglobal.com. ..
Some time ago, I posted a scripted web page called:
Clear IE Cache/Cookies/History
which provided single button implementation of each function.
If there is enough request, I will make it available :-)

- Michel Gallant
Visual Security MVP
http://pages.istar.ca/~neutron

"Torgeir Bakken (MVP)" <To*****************@hydro.com> wrote in message
news:3F**************@hydro.com...
Steve wrote:
How can I programmatically clear the internet history in Windows XP? I
tried downloading the PowerToys which contain TweakUI as this used to
do it in previous versions of Windows, but the option is not there. I
then tried installing an old version of TweakUI but this does not work
either. I assume if the contents of '..Local Settings\History' could
be deleted then this would work but how do you this from a script.

Is there anyway in VB/WSH that you can use an API to do this?


Hi

A command line utility that might do the job:

IECache.exe
http://groups.google.com/groups?selm....uni-berlin.de
--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter



Jul 21 '05 #5
"name" <no****@user.com> wrote:
What is Java?


It's a language that (among other things) is widely used for writing
applets that run in your web browser. The source code is indeed
legible, but that gets compiled into *.class files,which are then
interpreted by a Java Virtual Machine (JVM). The class files are not
human-readable.

--
Tim Slattery
MS MVP(DTS)
Sl********@bls.gov
Jul 21 '05 #6
Yup ... java compiled class files (into "byte code") are rather
similar in concept to .NET compiled MSIL code. And both
use a JIT compiler at run time.
Making the transition from Java to C# was rather painless.
Bonus with .NET is you get by default all classes compiled into
one exe assembly and the assembly .exe PE header automagically
invokes the CLR. Plus, you get a PE that you can Authenicode sign .. bonus +

- Michel Gallant
Visual Security MVP (whatever that means :-)
http://pages.istar.ca/~neutron

"Tim Slattery" <Sl********@bls.gov> wrote in message
news:kg********************************@4ax.com...
"name" <no****@user.com> wrote:
What is Java?


It's a language that (among other things) is widely used for writing
applets that run in your web browser. The source code is indeed
legible, but that gets compiled into *.class files,which are then
interpreted by a Java Virtual Machine (JVM). The class files are not
human-readable.

--
Tim Slattery
MS MVP(DTS)
Sl********@bls.gov

Jul 21 '05 #7
> Visual Security MVP (whatever that means :-)

No worse than being in the "Visual Scripting" MVP group. At least that's
better than "Internet Client and Controls" ;-)...
--
Michael Harris
Microsoft.MVP.Scripting

Jul 21 '05 #8
Yup, I'm aware of that ... wonders of IE and image autosize :-)
Cheers,
- Mitch

"Jean" <http://jm**@jmst.be.tf> wrote in message news:uV**************@TK2MSFTNGP12.phx.gbl...
Hi Michel,

just to tell you that to see correctly screenshots on your site with XP (and
more probably IE6) I need to push a "maximize window" button in the browser.
See my screenshot ... of your screenshot :-) (file attached to this
message).

Regards,

Jean -JMST
Belgium


Jul 21 '05 #9

"Michael Harris (MVP)" <mi****@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Visual Security MVP (whatever that means :-)


No worse than being in the "Visual Scripting" MVP group. At least that's
better than "Internet Client and Controls" ;-)...


Hey, one monkey out of three ain't so bad.

/Al

hint: the other two could both claim to be "Auditory Security MVP's" ;-)
Jul 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Victor Hadianto | last post by:
Hi, Is it possible to programmatically add a history link in the web browser control without getting the WebBrowser control to visit a URL? -- Victor Hadianto...
3
by: Simon | last post by:
Hi, I need to prevent Internet Explorer to save the page in history collection when it is in PostBack. To try do this I have put this code: protected override void OnLoad( EventArgs evt) { if...
6
by: Matt Frame | last post by:
I have a client that has asked us to get a digital signature certificate and start digitally signing all files we pass between each other. I have heard of the subject and know about the certs but...
0
by: Alex | last post by:
Greetings How do I programmatically delete IE History with VB.Net. Regard Alex
9
by: Steve | last post by:
How can I programmatically clear the internet history in Windows XP? I tried downloading the PowerToys which contain TweakUI as this used to do it in previous versions of Windows, but the option is...
0
by: vighnesh | last post by:
Hi All Can Anybody Please guide me in clearing the Internet Explorer History ( Browser History ) through VB.NET code. Thanks in advance Regards Vighneswar NGV33010
9
by: vighnesh | last post by:
Hi Folks Greetings to you all. I have been dealing a project, in which one of the requirement is to clear FireFox browser history programatically. Can anybody suggest me, how this can be...
9
by: questionit | last post by:
Hello Experts If the 'Clear history' button is disbaled in 'Internet Properties' in the control Panel, how can it be enabled ? Probably , by some settings in Registry ? Please give me clues...
1
by: Kuldeep | last post by:
Framework: Visual Studio 2005 Technology: ASP.NET 2.0 Language: C#.NET 2.0 Hi All, Is there a way to programmaticlly clear a selected few URL's from the "History" section of our Internet...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.