Hi Guys,
Now I have my PST move script working how I want it, I want to inform users that something is happening.
I'm hoping a nice splash screen will stop the "Hey! Why is my Outlook flashing on and off" and "Hey, why isn't my computer loading anything else (CTRL+ALT+DEL, kill process)".
The best solution I've found from Googl'ing is to open an HTA window with no ability to close it. I can make this look how I want and include info to the user, all fine and dandy.
But, how do I close it when the vbscript has come to the end? I've tried objScript.Quit and objScript.Close but it says it doesn't support these.
I thought about modifying Geate's code for closing the Windows Process, but this seems over the top and it refused to work.
Now I have my PST move script working how I want it, I want to inform users that something is happening.
I'm hoping a nice splash screen will stop the "Hey! Why is my Outlook flashing on and off" and "Hey, why isn't my computer loading anything else (CTRL+ALT+DEL, kill process)".
The best solution I've found from Googl'ing is to open an HTA window with no ability to close it. I can make this look how I want and include info to the user, all fine and dandy.
But, how do I close it when the vbscript has come to the end? I've tried objScript.Quit and objScript.Close but it says it doesn't support these.
Code:
Dim objSplash
Set objSplash = CreateObject("Wscript.shell")
objSplash.Run "movepstsplash.hta"
I thought about modifying Geate's code for closing the Windows Process, but this seems over the top and it refused to work.