Iamnotageek
Expert Member
- Joined
- Dec 22, 2013
- Messages
- 3,825
- Reaction score
- 2,196
Hi guys,
Here's the code I have in notepad that runs before my little backup does in a .bat file I made...
I just run the .bat file from within command prompt in Windows 10.
What I want:
Is there anyway to "code" or add a YES & NO button to that popup window before the backup starts?
Here's the code I have in notepad that runs before my little backup does in a .bat file I made...
echo msgbox "Please make sure you have plugged in the external hard drive before continuing & that ALL documents have been saved and closed." > %temp%\popup.vbs
wscript.exe "%temp%\popup.vbs
@echo off
cls
cd\
d:
robocopy d:\documents \\server-pc\users\public\dailynew /E
echo msgbox "All Done!" > %temp%\popup.vbs
wscript.exe "%temp%\popup.vbs
I just run the .bat file from within command prompt in Windows 10.
What I want:
Is there anyway to "code" or add a YES & NO button to that popup window before the backup starts?