Hi,
I have written the batch file below to deleted system certificates. It works great if you want it to only run while logged in as the current profile.
I want it to delete the certificates for all the profiles on the computer. Can anyone assist me?
Batch file
##################
@echo off
echo Deleting wireless certificates - Please wait.
echo.
pause
c:
cd ""%userprofile%\Application Data\Microsoft\SystemCertificates\My\Certificates\"
attrib -s -h -r *.*
del /q *.*
echo Please shutdown and restart your computer!!!!
@echo off
pause
I have written the batch file below to deleted system certificates. It works great if you want it to only run while logged in as the current profile.
I want it to delete the certificates for all the profiles on the computer. Can anyone assist me?
Batch file
##################
@echo off
echo Deleting wireless certificates - Please wait.
echo.
pause
c:
cd ""%userprofile%\Application Data\Microsoft\SystemCertificates\My\Certificates\"
attrib -s -h -r *.*
del /q *.*
echo Please shutdown and restart your computer!!!!
@echo off
pause