Skip to content

Instantly share code, notes, and snippets.

@DorukUlucay
DorukUlucay / gp.bat
Last active April 10, 2024 12:26
Retrieve Password of an App Pool identity account
echo off
REM Get info of given app pool
color a
set /p apppool= Which one ?
cd \
cd C:\Windows\System32\inetsrv
appcmd.exe list apppool %apppool% /text:* | find "password"
PAUSE