How can I launch a program with its own custom appdata folder using a Visual Basic script. I have tried to do this with a batch file:
@echo off
set APPDATA=%CD%\appdata
start program.exe
And it works everywhere except school, as the command prompt is disabled. I have used VBscripts before with success so I thought that might be a good idea.
(BTW, before anyone asks, yes we are allowed to run other programs on the computers and I just need to store the appdata on a USB so it saves my stuff)