Batch to delete profile folder on network pc after local profile reset

97 Views Asked by At

I've recently created a batchfile to reset a local W7 profile on a network pc. This works as it is supposed to, but sometimes the profile folder isn't removed. Therefore I would like to verify and delete any profile folder beginning with the user's logon.

I'm trying to do this with the following code:

for /f %%i in ('ping -n 1 %workstation% ^| find /c "(0%% loss)"') do SET PINGRESULT=%%i
    If %PINGRESULT%==1 (
        If exist \\%workstation%\c$\users\%usr%* (
            echo Profile folder found, trying to delete >> log.txt
            FOR /D /R %%X IN (\\%workstation%\c$\users\%usr%*) DO RD /S /Q "%%X"
        ) ELSE (
            echo Profile Folder not found >> log.txt
        )   
            )

The folder is found, but it isn't removed. And I'm not getting any error message.

1

There are 1 best solutions below

1
On BEST ANSWER

The OP wrote in a comment:

After messing around I noticed that:

FOR /D %%X IN (\\%workstation%\c$\users\%usr%*) DO RD /S /Q %%X 

seems to do the trick.