Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Display A Progress Bar (or Something Similar) While My Script RunsContent of Display A Progress Bar (or Something Similar) While My Script Runs.vbsMD5 Hash: E8A39A0C0C03C0AD9070C82917D67922 |
||
On Error Resume Next
Set objExplorer = CreateObject _ ("InternetExplorer.Application") objExplorer.Navigate "about:blank" objExplorer.ToolBar = 0 objExplorer.StatusBar = 0 objExplorer.Width = 400 objExplorer.Height = 200 objExplorer.Visible = 1 objExplorer.Document.Title = "Logon script in progress" objExplorer.Document.Body.InnerHTML = "Your logon script is being processed. " _ & "This might take several minutes to complete." Wscript.Sleep 10000 objExplorer.Document.Body.InnerHTML = "Your logon script is now complete." Wscript.Sleep 5000 objExplorer.Quit | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |