@danil140 then i guess on each new "CONNECT" to different hosts you will have different ip's, so for ip.bablosoft.com it will be one ip, for your site on what you working it will be another ip, then it make no sense
Clear Browser history without deleting the fingerprint/proxies etc.
-
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



