Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Refreshing screen using a bat file
Name: Tony Short Date: October 15, 2008 at 02:08:23 Pacific OS: 2003 CPU/Ram: Intel XEON. 4GB of RAM Product: Dell
Comment:
We have a dedicated computer that runs an asp page that displays photos on a slideshow.
We often receive 'The page cannot be displayed' and all we need to do is refresh the screen.
Because this screen is in our foyer for customers I'm wanting to automate a refresh say every 1 minute. Can I create a batch job that refreshes the screen? Or should I write something into the programme to automatically refresh?
Name: Razor2.3 Date: October 16, 2008 at 07:41:00 Pacific
Reply:
What's everyone's obsession with Command Scripts? VBScript is a much better language.
With CreateObject("InternetExplorer.Application") .Visible = True .Navigate "http://www.google.com" WScript.Sleep 1000 Do While .Busy WScript.Sleep 100 Loop
On Error Resume Next Do Until Err WScript.Sleep 60000 'In milliseconds .Refresh Loop End With
Summary: I have an XML file that has many tags, each of which has some nested ones underneath. How can I have a batch file that adds a nested tag under one of the parent tags using a bat file? For example: T...
Summary: hi, im new to .bat file but have already learned quite a bit about them but have hit a snag. i need to know if a .bat file can create a file e.g. "New Text Document.txt" and if so how thanx in advance...