If you want the second folder to stay updated with the potential changes that appear in the original folder after working with it, then yes, you would need to copy it again.
Clear Browser history without deleting the fingerprint/proxies etc.
-
Hello everyone,
I have been using BAS profiles and I have unique fingerprints for every profile. I have many profiles but now I am having problem because the storage space taken by each profile is increasing with every browsed website. Is there any solution where I can clear only the cookies, history etc without clearing the Proxy/Fingerprint and profile data?
I have tried Browser Reset but it clears everything including the fingerprint which I don't want.
Any solution for this?
-
@hippyzipp9 it is possible to delete data in folders as shown in the screenshot with marks 1 and 2.
The BAS developers do not guarantee that this will not cause problems with the profile.

-
Hello @tet-vivi thanks for the reply, how do I delete cache from many profiles at a time?
I tried using Remove folder with
Profiles/*/Cache/*But nothing happens, I have to mention every profile name and then delete it. For some reason * is not working.
-
@hippyzipp9 something like that?
{{dir_profile}} - something like 'c:/n/dir_profile'

-
@super84 You clear it with the help of loop? or at once?
-
@hippyzipp9
for /D %I in ("[[DIR_FULL_PATH]]\*") do @del /S /F /Q "%~I\Cache\" -
@hippyzipp9 Loops through the Profiles and Cleans both the Cache and Code Cache Folders.
-
@tet-vivi
Used your code like this:for /D %I in ("C:/BAS/Profiles/*") do @del /S /F /Q "%~I/Cache/"Gives me this error:
PROCESS_ERROR_OUTPUT: "The following usage of the path operator in batch-parameter substitution is invalid: %~I/Cache/*" For valid formats type CALL /? or FOR /? The syntax of the command is incorrect. " -
@super84 Can you share the script?
-
For BAS we need to use %% I guess, after trying all the things, this code worked.
for /D %%I in ("C:\BAS\Profiles\*") do @del /S /F /Q "%%I\Cache\*.*"Thank you for helping @tet-vivi @super84


