BlueIshDan
☠
- Local time
- Today, 07:11
- Joined
- May 15, 2014
- Messages
- 1,122
I'm running into the issue where some of my batch files don't run correctly when the Access Application runs them.
Batch File:
I believe that this is because the For loops above are deleting files and don't have permissions to do it when ran from the application.
Does anyone know how I can modify this VBA to launch as Administrator?
VBA Snippet:
Thanks!
Batch File:
Code:
FOR %%F IN ("*.prp") DO IF %%~zF EQU 0 DEL "%%F"
FOR %%F IN ("*.drv") DO IF %%~zF EQU 0 DEL "%%F"
start "" "%~dp0\Start.bat"
Does anyone know how I can modify this VBA to launch as Administrator?
VBA Snippet:
Code:
Shell parent_path & "\Copy_" & Get2000Or2100 & ".bat"
Thanks!
